You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
367 B

import { keys } from './utils/object';
export default class Statement {
constructor ( node, source, module ) {
this.node = node;
this.module = module;
this.source = source;
this.defines = {};
this.modifies = {};
this.dependsOn = {};
this.isIncluded = false;
this.leadingComments = []
this.trailingComment = null;
this.margin = [ 0, 0 ];
}
}