solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
23 lines (22 loc) • 849 B
JavaScript
import { ContractDefinition } from "./contract-definition.js";
import { EnumDefinition } from "./enum-definition.js";
import { ErrorDefinition } from "./error-definition.js";
import { EventDefinition } from "./event-definition.js";
import { FunctionDefinition } from "./function-definition.js";
import { ModifierDefinition } from "./modifier-definition.js";
import { StructDefinition } from "./struct-definition.js";
import { StructMember } from "./struct-member.js";
import { UserDefinedValueTypeDefinition } from "./user-defined-value-type-definition.js";
import { VariableDeclaration } from "./variable-declaration.js";
export {
ContractDefinition,
EnumDefinition,
ErrorDefinition,
EventDefinition,
FunctionDefinition,
ModifierDefinition,
StructDefinition,
StructMember,
UserDefinedValueTypeDefinition,
VariableDeclaration
};