WIP - add extractor, generate snippet_data

This commit is contained in:
Stefan Fejes
2019-08-20 15:52:05 +02:00
parent 88084d3d30
commit cc8f1d8a7a
37396 changed files with 4588842 additions and 133 deletions

20
node_modules/rollup/dist/typings/ast/CallOptions.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import { ExpressionEntity } from './nodes/shared/Expression';
import SpreadElement from './nodes/SpreadElement';
import TaggedTemplateExpression from './nodes/TaggedTemplateExpression';
import NewExpression from './nodes/NewExpression';
import Property from './nodes/Property';
import CallExpression from './nodes/CallExpression';
export declare type CallExpressionType = TaggedTemplateExpression | CallExpression | NewExpression | Property;
export interface CallCreateOptions {
withNew: boolean;
args?: (ExpressionEntity | SpreadElement)[];
callIdentifier: Object;
}
export default class CallOptions implements CallCreateOptions {
withNew: boolean;
args: (ExpressionEntity | SpreadElement)[];
callIdentifier: Object;
static create(callOptions: CallCreateOptions): CallOptions;
constructor({withNew, args, callIdentifier}?: CallCreateOptions);
equals(callOptions: CallOptions): boolean;
}