/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | globalIsContextualKeyword.ts | 22 let global = 1; 23 AssertType(global, "number"); 27 class global {} 30 namespace global { namespace 33 function foo(global: number) { 38 AssertType({ global: "123"}, "{ global: string; }"); 40 global: "123" 41 AssertType(global, "string");
|
D | globalAugmentationModuleResolution.ts | 24 declare global {
|
D | constructorOverloads5.ts | 33 global: boolean;
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-keyword-identify4.ts | 17 export var declare = 0, global = 1; variable 18 global = 2; 19 global++; 21 declare global {} 24 global
|
D | test_module7.ts | 23 var global = 1; variable 24 global = global + 1;
|
D | test-keyword-identify4-expected.txt | 54 "name": "global", 124 "name": "global", 180 "name": "global", 218 "name": "global", 245 "global": true, 288 "name": "global",
|
D | test-keyword-identify8.ts | 18 let global = 1; 22 class global {}
|
D | test_module9-expected.txt | 8 "name": "global", 21 "global": true,
|
D | test_module-expected.txt | 278 "global": false, 424 "global": false, 602 "global": false, 615 "global": false, 628 "global": false, 806 "global": false, 819 "global": false, 832 "global": false, 891 "global": false, 904 "global": false, [all …]
|
D | test_module8-expected.txt | 24 "name": "global", 51 "global": true,
|
D | test_module10-expected.txt | 94 "name": "global", 107 "global": true,
|
D | test_module8.ts | 18 declare global {}
|
D | test_module9.ts | 17 declare global
|
D | test_module10.ts | 19 declare global
|
/arkcompiler/ets_frontend/es2panda/test/ |
D | test262harness.js | 18 global: globalThis, property 21 global.evalScript(code); 31 return global[name]; 34 global[name] = value; 54 return this.global[name]; 57 this.global[name] = value;
|
/arkcompiler/ets_runtime/test/aottest/global_this_ts/ |
D | global_this_ts.ts | 18 var global = globalThis; 19 print(typeof global);
|
/arkcompiler/ets_runtime/test/quickfix/global_var/ |
D | expect_output.txt | 17 patch old global var :100 18 patch new global var :undefined 23 base global var :100
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
D | unaryExpression.cpp | 48 compiler::VReg global = pg->AllocReg(); in Compile() local 51 pg->StoreAccumulator(this, global); in Compile() 56 pg->DeleteObjProperty(this, global, variable); in Compile() 85 compiler::VReg global = pg->AllocReg(); in Compile() local 88 pg->StoreAccumulator(this, global); in Compile() 89 pg->LoadObjByName(this, global, ident->Name()); in Compile()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_regexp_iterator.cpp | 57 bool global = jsIterator->GetGlobal(); in Next() local 75 if (global) { in Next() 112 bool global, bool fullUnicode) in CreateRegExpStringIterator() argument 119 …JSHandle<JSTaggedValue> iter(factory->NewJSRegExpIterator(matcher, inputStr, global, fullUnicode)); in CreateRegExpStringIterator()
|
/arkcompiler/ets_frontend/arkguard/ |
D | README.md | 13 * names in global scope 17 global names obfuscation and property names obfuscation are disabled by default, as they may 134 Specifies to obfuscate the names in the global scope. If you use this option, all global names will… 136 * the `import/export` global names. 137 * the global names that are not declared in the current file. 138 * the global names that are specified by [keep options](#keep-options). 139 * the global names in system API list. 207 `-keep-global-name` [,modifiers,...] 209 Specifies names that you want to keep in the global scope. For example, 211 -keep-global-name [all …]
|
D | README-cn.md | 190 `-keep-global-name` [,modifiers,...] 194 -keep-global-name 231 -keep-global-name 290 case -keep-global-name: 304 * `-keep-dts`选项会被转换成`-keep-global-name`和`-keep-property-name`。
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsModuleDeclaration.h | 38 bool global, bool isInstantiated = true) 44 global_(global), in Statement()
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationGlobal4/ |
D | f2.ts | 22 declare global {
|
D | f1.ts | 22 declare global {
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationGlobal3/ |
D | f2.ts | 25 declare global {
|