• Home
  • Raw
  • Download

Lines Matching refs:context

417 static void CompileJob(compiler::CompilerContext *context, varbinder::FunctionScope *scope,  in CompileJob()  argument
423 compiler::ETSGen cg {&allocator, &regSpiller, context, scope, programElement, &astCompiler}; in CompileJob()
678 extern "C" es2panda_Context *ProceedToState(es2panda_Context *context, es2panda_ContextState state) in ProceedToState() argument
680 auto *ctx = reinterpret_cast<Context *>(context); in ProceedToState()
710 extern "C" void DestroyContext(es2panda_Context *context) in DestroyContext() argument
712 auto *ctx = reinterpret_cast<Context *>(context); in DestroyContext()
726 extern "C" es2panda_ContextState ContextState(es2panda_Context *context) in ContextState() argument
728 auto *s = reinterpret_cast<Context *>(context); in ContextState()
732 extern "C" char const *ContextErrorMessage(es2panda_Context *context) in ContextErrorMessage() argument
734 auto *s = reinterpret_cast<Context *>(context); in ContextErrorMessage()
738 extern "C" es2panda_Program *ContextProgram(es2panda_Context *context) in ContextProgram() argument
740 auto *ctx = reinterpret_cast<Context *>(context); in ContextProgram()
807 extern "C" void AstNodeSetDecorators(es2panda_Context *context, es2panda_AstNode *ast, es2panda_Ast… in AstNodeSetDecorators() argument
810 auto *ctx = reinterpret_cast<Context *>(context); in AstNodeSetDecorators()
894 extern "C" es2panda_AstNode *CreateArrowFunctionExpression(es2panda_Context *context, es2panda_AstN… in IS()
896 auto *ctx = reinterpret_cast<Context *>(context); in IS()
909 extern "C" es2panda_AstNode *CreateAsExpression(es2panda_Context *context, es2panda_AstNode *expr, in CreateAsExpression() argument
912 auto *ctx = reinterpret_cast<Context *>(context); in CreateAsExpression()
971 extern "C" es2panda_AstNode *CreateAssignmentExpression(es2panda_Context *context, es2panda_AstNode… in CreateAssignmentExpression() argument
974 auto *ctx = reinterpret_cast<Context *>(context); in CreateAssignmentExpression()
1035 extern "C" es2panda_AstNode *CreateBinaryExpression(es2panda_Context *context, es2panda_AstNode *le… in CreateBinaryExpression() argument
1038 auto *ctx = reinterpret_cast<Context *>(context); in CreateBinaryExpression()
1072 extern "C" es2panda_AstNode *CreateBlockStatement(es2panda_Context *context) in CreateBlockStatement() argument
1074 auto *ctx = reinterpret_cast<Context *>(context); in CreateBlockStatement()
1096 extern "C" es2panda_AstNode *CreateCallExpression(es2panda_Context *context, es2panda_AstNode *call… in CreateCallExpression() argument
1100 auto *ctx = reinterpret_cast<Context *>(context); in CreateCallExpression()
1150 extern "C" es2panda_AstNode *CreateChainExpression(es2panda_Context *context, es2panda_AstNode *chi… in CreateChainExpression() argument
1152 auto *ctx = reinterpret_cast<Context *>(context); in CreateChainExpression()
1165 extern "C" es2panda_AstNode *CreateClassDeclaration(es2panda_Context *context, es2panda_AstNode *de… in CreateClassDeclaration() argument
1167 auto *ctx = reinterpret_cast<Context *>(context); in CreateClassDeclaration()
1180 extern "C" es2panda_AstNode *CreateClassDefinition(es2panda_Context *context, es2panda_AstNode *ide… in CreateClassDefinition() argument
1183 auto *ctx = reinterpret_cast<Context *>(context); in CreateClassDefinition()
1310 extern "C" es2panda_AstNode *CreateClassImplementsClause(es2panda_Context *context, es2panda_AstNod… in CreateClassImplementsClause() argument
1313 auto *ctx = reinterpret_cast<Context *>(context); in CreateClassImplementsClause()
1335 extern "C" es2panda_AstNode *CreateClassProperty(es2panda_Context *context, es2panda_AstNode *key, in CreateClassProperty() argument
1339 auto *ctx = reinterpret_cast<Context *>(context); in CreateClassProperty()
1358 extern "C" es2panda_AstNode *CreateExpressionStatement(es2panda_Context *context, es2panda_AstNode … in CreateExpressionStatement() argument
1360 auto *ctx = reinterpret_cast<Context *>(context); in CreateExpressionStatement()
1373 extern "C" es2panda_AstNode *CreateFunctionDeclaration(es2panda_Context *context, es2panda_AstNode … in CreateFunctionDeclaration() argument
1375 auto *ctx = reinterpret_cast<Context *>(context); in CreateFunctionDeclaration()
1388 extern "C" es2panda_AstNode *CreateFunctionExpression(es2panda_Context *context, es2panda_AstNode *… in CreateFunctionExpression() argument
1390 auto *ctx = reinterpret_cast<Context *>(context); in CreateFunctionExpression()
1403 extern "C" es2panda_AstNode *CreateFunctionTypeNode(es2panda_Context *context, es2panda_AstNode *ty… in CreateFunctionTypeNode() argument
1408 auto *ctx = reinterpret_cast<Context *>(context); in CreateFunctionTypeNode()
1453 extern "C" es2panda_AstNode *CreateIdentifier(es2panda_Context *context, char const *name, in CreateIdentifier() argument
1456 auto *ctx = reinterpret_cast<Context *>(context); in CreateIdentifier()
1468 extern "C" char const *IdentifierName(es2panda_Context *context, es2panda_AstNode *identifier) in IdentifierName() argument
1470 auto *ctx = reinterpret_cast<Context *>(context); in IdentifierName()
1498 extern "C" es2panda_AstNode *CreateIfStatement(es2panda_Context *context, es2panda_AstNode *test, in CreateIfStatement() argument
1501 auto *ctx = reinterpret_cast<Context *>(context); in CreateIfStatement()
1531 extern "C" es2panda_AstNode *CreateImportDeclaration(es2panda_Context *context, es2panda_AstNode *s… in CreateImportDeclaration() argument
1534 auto *ctx = reinterpret_cast<Context *>(context); in CreateImportDeclaration()
1564 extern "C" es2panda_AstNode *CreateImportExpression(es2panda_Context *context, es2panda_AstNode *so… in CreateImportExpression() argument
1566 auto *ctx = reinterpret_cast<Context *>(context); in CreateImportExpression()
1579 extern "C" es2panda_AstNode *CreateImportSpecifier(es2panda_Context *context, es2panda_AstNode *imp… in CreateImportSpecifier() argument
1582 auto *ctx = reinterpret_cast<Context *>(context); in CreateImportSpecifier()
1635 extern "C" es2panda_AstNode *CreateMemberExpression(es2panda_Context *context, es2panda_AstNode *ob… in CreateMemberExpression() argument
1639 auto *ctx = reinterpret_cast<Context *>(context); in CreateMemberExpression()
1712 extern "C" es2panda_AstNode *CreateMethodDefinition(es2panda_Context *context, char const *kind, es… in CreateMethodDefinition() argument
1716 auto *ctx = reinterpret_cast<Context *>(context); in CreateMethodDefinition()
1784 extern "C" es2panda_AstNode *CreateNewClassInstanceExpression(es2panda_Context *context, in CreateNewClassInstanceExpression() argument
1789 auto *ctx = reinterpret_cast<Context *>(context); in CreateNewClassInstanceExpression()
1827 extern "C" es2panda_AstNode *CreateNewArrayInstanceExpression(es2panda_Context *context, in CreateNewArrayInstanceExpression() argument
1831 auto *ctx = reinterpret_cast<Context *>(context); in CreateNewArrayInstanceExpression()
1852 extern "C" es2panda_AstNode *CreateNewMultiDimArrayInstanceExpression(es2panda_Context *context, in CreateNewMultiDimArrayInstanceExpression() argument
1856 auto *ctx = reinterpret_cast<Context *>(context); in CreateNewMultiDimArrayInstanceExpression()
1885 extern "C" es2panda_AstNode *CreateParameterDeclaration(es2panda_Context *context, es2panda_AstNode… in CreateParameterDeclaration() argument
1888 auto *ctx = reinterpret_cast<Context *>(context); in CreateParameterDeclaration()
1964 extern "C" es2panda_AstNode *CreatePrimitiveTypeNode(es2panda_Context *context, char const *type) in CreatePrimitiveTypeNode() argument
1966 auto *ctx = reinterpret_cast<Context *>(context); in CreatePrimitiveTypeNode()
1979 extern "C" es2panda_AstNode *CreateReturnStatement(es2panda_Context *context, es2panda_AstNode *arg… in CreateReturnStatement() argument
1981 auto *ctx = reinterpret_cast<Context *>(context); in CreateReturnStatement()
2000 extern "C" es2panda_AstNode *CreateScriptFunction(es2panda_Context *context, es2panda_AstNode *type… in CreateScriptFunction() argument
2006 auto *ctx = reinterpret_cast<Context *>(context); in CreateScriptFunction()
2112 extern "C" es2panda_AstNode *CreateStringLiteral(es2panda_Context *context, char const *string) in CreateStringLiteral() argument
2114 auto *ctx = reinterpret_cast<Context *>(context); in CreateStringLiteral()
2121 extern "C" char const *StringLiteralString(es2panda_Context *context, es2panda_AstNode *ast) in StringLiteralString() argument
2123 auto *ctx = reinterpret_cast<Context *>(context); in StringLiteralString()
2129 extern "C" es2panda_AstNode *CreateThisExpression(es2panda_Context *context) in CreateThisExpression() argument
2131 auto *ctx = reinterpret_cast<Context *>(context); in CreateThisExpression()
2137 extern "C" es2panda_AstNode *CreateTypeParameter(es2panda_Context *context, es2panda_AstNode *name, in CreateTypeParameter() argument
2140 auto *ctx = reinterpret_cast<Context *>(context); in CreateTypeParameter()
2169 extern "C" es2panda_AstNode *CreateTypeParameterDeclaration(es2panda_Context *context) in CreateTypeParameterDeclaration() argument
2171 auto *ctx = reinterpret_cast<Context *>(context); in CreateTypeParameterDeclaration()
2195 extern "C" es2panda_AstNode *CreateTypeParameterInstantiation(es2panda_Context *context, in CreateTypeParameterInstantiation() argument
2198 auto *ctx = reinterpret_cast<Context *>(context); in CreateTypeParameterInstantiation()
2217 extern "C" es2panda_AstNode *CreateTypeReferenceNode(es2panda_Context *context, es2panda_AstNode *p… in CreateTypeReferenceNode() argument
2219 auto *ctx = reinterpret_cast<Context *>(context); in CreateTypeReferenceNode()
2232 extern "C" es2panda_AstNode *CreateTypeReferencePart(es2panda_Context *context, es2panda_AstNode *n… in CreateTypeReferencePart() argument
2235 auto *ctx = reinterpret_cast<Context *>(context); in CreateTypeReferencePart()
2264 extern "C" es2panda_AstNode *CreateUnionTypeNode(es2panda_Context *context, es2panda_AstNode **type… in CreateUnionTypeNode() argument
2266 auto *ctx = reinterpret_cast<Context *>(context); in CreateUnionTypeNode()
2320 extern "C" es2panda_AstNode *CreateVariableDeclaration(es2panda_Context *context, char const *kind, in CreateVariableDeclaration() argument
2324 auto *ctx = reinterpret_cast<Context *>(context); in CreateVariableDeclaration()
2358 extern "C" es2panda_AstNode *CreateVariableDeclarator(es2panda_Context *context, es2panda_AstNode *… in CreateVariableDeclarator() argument
2361 auto *ctx = reinterpret_cast<Context *>(context); in CreateVariableDeclarator()