Home
last modified time | relevance | path

Searched refs:GeneratorKind (Results 1 – 25 of 116) sorted by relevance

12345

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/frontend/
H A DParser.h123 GeneratorKind generatorKind() const { in generatorKind()
515 Directives directives, GeneratorKind generatorKind,
528 Directives directives, GeneratorKind generatorKind) in newFunctionBox()
607 GeneratorKind generatorKind,
730 FunctionSyntaxKind kind, GeneratorKind generatorKind,
733 FunctionSyntaxKind kind, GeneratorKind generatorKind,
745 Node generatorComprehensionLambda(GeneratorKind comprehensionKind, unsigned begin,
748 Node comprehensionFor(GeneratorKind comprehensionKind);
749 Node comprehensionIf(GeneratorKind comprehensionKind);
750 Node comprehensionTail(GeneratorKind comprehensionKind);
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/frontend/
H A DParser.h491 GeneratorKind generatorKind() const {
958 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
966 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
1027 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
1033 GeneratorKind generatorKind, FunctionAsyncKind asyncKind);
1233 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
1248 Node comprehensionFor(GeneratorKind comprehensionKind);
1249 Node comprehensionIf(GeneratorKind comprehensionKind);
1250 Node comprehensionTail(GeneratorKind comprehensionKind);
1251 Node comprehension(GeneratorKind comprehensionKind);
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/
H A Dasync_yields_async.rs5 use rustc_hir::{AsyncGeneratorKind, Body, BodyId, ExprKind, GeneratorKind, QPath};
49 if let Some(GeneratorKind::Async(Block | Closure)) = body.generator_kind { in check_body()
H A Dawait_holding_invalid.rs4 use rustc_hir::{AsyncGeneratorKind, Body, BodyId, GeneratorKind};
101 if let Some(GeneratorKind::Async(Block | Closure | Fn)) = body.generator_kind { in check_body()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/frontend/
H A DSharedContext.h377 GeneratorKind generatorKind, FunctionAsyncKind asyncKind);
435 GeneratorKind generatorKind() const { in generatorKind()
436 return isGenerator() ? GeneratorKind::Generator in generatorKind()
437 : GeneratorKind::NotGenerator; in generatorKind()
H A DBytecodeCompiler.cpp48 GeneratorKind generatorKind,
408 MutableHandleFunction fun, GeneratorKind generatorKind, in compileStandaloneFunction()
648 return compiler.compileStandaloneFunction(fun, GeneratorKind::NotGenerator, in CompileStandaloneFunction()
661 return compiler.compileStandaloneFunction(fun, GeneratorKind::Generator, in CompileStandaloneGenerator()
674 return compiler.compileStandaloneFunction(fun, GeneratorKind::NotGenerator, in CompileStandaloneAsyncFunction()
687 return compiler.compileStandaloneFunction(fun, GeneratorKind::Generator, in CompileStandaloneAsyncGenerator()
/dports/www/firefox-esr/firefox-91.8.0/js/src/vm/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/www/firefox/firefox-99.0/js/src/vm/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
H A DJSFunction.h509 js::GeneratorKind generatorKind() const { in generatorKind()
516 return js::GeneratorKind::NotGenerator; in generatorKind()
519 js::GeneratorKind clonedSelfHostedGeneratorKind() const;
522 return generatorKind() == js::GeneratorKind::Generator; in isGenerator()
770 extern bool GetFunctionPrototype(JSContext* cx, js::GeneratorKind generatorKind,
/dports/www/firefox/firefox-99.0/third_party/rust/jsparagus-stencil/src/copy/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/vm/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/jsparagus-stencil/src/copy/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/jsparagus-stencil/src/copy/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/jsparagus-stencil/src/copy/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/vm/
H A DGeneratorAndAsyncKind.h12 enum class GeneratorKind : bool { NotGenerator, Generator }; enum
/dports/www/firefox-esr/firefox-91.8.0/js/src/frontend/
H A DBytecodeCompiler.cpp541 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
546 GeneratorKind generatorKind,
787 JSContext* cx, FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in parse()
823 JSContext* cx, FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in compile()
1154 FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in CompileStandaloneFunction()
1233 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneFunction()
1242 syntaxKind, GeneratorKind::Generator, in CompileStandaloneGenerator()
1251 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneAsyncFunction()
1260 syntaxKind, GeneratorKind::Generator, in CompileStandaloneAsyncGenerator()
1270 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneFunctionInNonSyntacticScope()
H A DSharedContext.h417 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
510 GeneratorKind generatorKind() const { in generatorKind()
511 return isGenerator() ? GeneratorKind::Generator in generatorKind()
512 : GeneratorKind::NotGenerator; in generatorKind()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/frontend/
H A DBytecodeCompiler.cpp541 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
546 GeneratorKind generatorKind,
787 JSContext* cx, FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in parse()
823 JSContext* cx, FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in compile()
1154 FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in CompileStandaloneFunction()
1233 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneFunction()
1242 syntaxKind, GeneratorKind::Generator, in CompileStandaloneGenerator()
1251 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneAsyncFunction()
1260 syntaxKind, GeneratorKind::Generator, in CompileStandaloneAsyncGenerator()
1270 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneFunctionInNonSyntacticScope()
H A DSharedContext.h417 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
510 GeneratorKind generatorKind() const { in generatorKind()
511 return isGenerator() ? GeneratorKind::Generator in generatorKind()
512 : GeneratorKind::NotGenerator; in generatorKind()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/frontend/
H A DSharedContext.h378 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
477 GeneratorKind generatorKind() const { in generatorKind()
478 return isGenerator() ? GeneratorKind::Generator in generatorKind()
479 : GeneratorKind::NotGenerator; in generatorKind()
H A DParseContext.h446 GeneratorKind generatorKind() const { in generatorKind()
448 : GeneratorKind::NotGenerator; in generatorKind()
452 return generatorKind() == GeneratorKind::Generator; in isGenerator()
H A DBytecodeCompiler.cpp300 HandleScope enclosingScope, GeneratorKind generatorKind,
585 HandleScope enclosingScope, GeneratorKind generatorKind, in parse()
1055 GeneratorKind generatorKind, in CompileStandaloneFunction()
1105 cx, fun, options, srcBuf, parameterListEnd, GeneratorKind::NotGenerator, in CompileStandaloneFunction()
1114 GeneratorKind::Generator, in CompileStandaloneGenerator()
1123 GeneratorKind::NotGenerator, in CompileStandaloneAsyncFunction()
1132 GeneratorKind::Generator, in CompileStandaloneAsyncGenerator()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/vm/
H A DJSScript.h1306 js::GeneratorKind generatorKind() const { in generatorKind()
1307 return isGenerator_ ? js::GeneratorKind::Generator in generatorKind()
1308 : js::GeneratorKind::NotGenerator; in generatorKind()
1311 void setGeneratorKind(js::GeneratorKind kind) { in setGeneratorKind()
1315 isGenerator_ = kind == js::GeneratorKind::Generator; in setGeneratorKind()
2059 GeneratorKind generatorKind() const { in generatorKind()
2060 return p_.isGenerator ? GeneratorKind::Generator in generatorKind()
2061 : GeneratorKind::NotGenerator; in generatorKind()
2065 return generatorKind() == GeneratorKind::Generator; in isGenerator()
2068 void setGeneratorKind(GeneratorKind kind) { in setGeneratorKind()
[all …]
/dports/www/firefox/firefox-99.0/js/src/frontend/
H A DBytecodeCompiler.cpp534 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
539 GeneratorKind generatorKind,
780 JSContext* cx, FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in parse()
816 JSContext* cx, FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in compile()
1345 FunctionSyntaxKind syntaxKind, GeneratorKind generatorKind, in CompileStandaloneFunction()
1425 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneFunction()
1434 syntaxKind, GeneratorKind::Generator, in CompileStandaloneGenerator()
1443 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneAsyncFunction()
1452 syntaxKind, GeneratorKind::Generator, in CompileStandaloneAsyncGenerator()
1462 syntaxKind, GeneratorKind::NotGenerator, in CompileStandaloneFunctionInNonSyntacticScope()
H A DSharedContext.h428 GeneratorKind generatorKind, FunctionAsyncKind asyncKind,
521 GeneratorKind generatorKind() const { in generatorKind()
522 return isGenerator() ? GeneratorKind::Generator in generatorKind()
523 : GeneratorKind::NotGenerator; in generatorKind()

12345