skutter
Version:
Skutter: Opinionated BDD Browser based test framework
24 lines (23 loc) • 596 B
JavaScript
"use strict";
class StackItem {
constructor(definition, element, type) {
this.definition = null;
this.element = null;
this.type = null;
this.definition = definition;
this.element = element;
this.type = type;
}
}
exports.StackItem = StackItem;
class ListStackItem {
constructor(definition, element, type) {
this.definition = null;
this.element = null;
this.type = null;
this.definition = definition;
this.element = element;
this.type = type;
}
}
exports.ListStackItem = ListStackItem;