Lines Matching defs:context
75 #include "parser/context/parserContext.h"
225 static void CompileJob(public_lib::Context *context, varbinder::FunctionScope *scope,
231 compiler::ETSGen cg {&allocator, ®Spiller, context, std::make_tuple(scope, programElement, &astCompiler)};
453 // Handle context literals.
507 extern "C" __attribute__((unused)) es2panda_Context *ProceedToState(es2panda_Context *context,
510 auto *ctx = reinterpret_cast<Context *>(context);
540 extern "C" __attribute__((unused)) void DestroyContext(es2panda_Context *context)
542 auto *ctx = reinterpret_cast<Context *>(context);
555 extern "C" __attribute__((unused)) es2panda_ContextState ContextState(es2panda_Context *context)
557 auto *s = reinterpret_cast<Context *>(context);
561 extern "C" __attribute__((unused)) char const *ContextErrorMessage(es2panda_Context *context)
563 auto *s = reinterpret_cast<Context *>(context);
567 extern "C" __attribute__((unused)) es2panda_Program *ContextProgram(es2panda_Context *context)
569 auto *ctx = reinterpret_cast<Context *>(context);