Lines Matching defs:config
211 extern "C" void DestroyConfig(es2panda_Config *config)
216 auto *cfg = reinterpret_cast<ConfigImpl *>(config);
236 __attribute__((unused)) static es2panda_Context *CreateContext(es2panda_Config *config, std::string const &&source,
239 auto *cfg = reinterpret_cast<ConfigImpl *>(config);
243 res->config = cfg;
278 extern "C" __attribute__((unused)) es2panda_Context *CreateContextFromFile(es2panda_Config *config,
297 return CreateContext(config, ss.str(), sourceFileName);
300 extern "C" __attribute__((unused)) es2panda_Context *CreateContextFromString(es2panda_Config *config,
304 return CreateContext(config, source, fileName);
322 ctx->parser->ParseScript(*ctx->sourceFile, ctx->config->options->CompilerOptions().compilationMode ==
468 emitter->Finalize(ctx->config->options->CompilerOptions().dumpDebugInfo, compiler::Signatures::ETS_GLOBAL);
494 util::GenerateProgram(ctx->program, ctx->config->options,