mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
export { Stack } from './src/Stack';
|
|
export { Parser } from './src/Parser';
|
|
export { EdgeBuffer } from './src/EdgeBuffer';
|
|
export * from './src/Contracts';
|
|
/**
|
|
* Names of supported expressions
|
|
*/
|
|
export declare const expressions: {
|
|
Identifier: "Identifier";
|
|
MemberExpression: "MemberExpression";
|
|
ExpressionStatement: "ExpressionStatement";
|
|
CallExpression: "CallExpression";
|
|
ArrowFunctionExpression: "ArrowFunctionExpression";
|
|
Literal: "Literal";
|
|
TemplateLiteral: "TemplateLiteral";
|
|
BinaryExpression: "BinaryExpression";
|
|
ArrayExpression: "ArrayExpression";
|
|
ObjectExpression: "ObjectExpression";
|
|
UnaryExpression: "UnaryExpression";
|
|
FunctionDeclaration: "FunctionDeclaration";
|
|
ConditionalExpression: "ConditionalExpression";
|
|
LogicalExpression: "LogicalExpression";
|
|
SequenceExpression: "SequenceExpression";
|
|
AssignmentExpression: "AssignmentExpression";
|
|
AwaitExpression: "AwaitExpression";
|
|
NewExpression: "NewExpression";
|
|
BlockStatement: "BlockStatement";
|
|
ReturnStatement: "ReturnStatement";
|
|
ThisExpression: "ThisExpression";
|
|
ChainExpression: "ChainExpression";
|
|
SpreadElement: "SpreadElement";
|
|
};
|