Home
last modified time | relevance | path

Searched refs:global (Results 1 – 25 of 106) sorted by relevance

12345

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DglobalIsContextualKeyword.ts22 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");
DglobalAugmentationModuleResolution.ts24 declare global {
DconstructorOverloads5.ts33 global: boolean;
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-keyword-identify4.ts17 export var declare = 0, global = 1; variable
18 global = 2;
19 global++;
21 declare global {}
24 global
Dtest_module7.ts23 var global = 1; variable
24 global = global + 1;
Dtest-keyword-identify4-expected.txt54 "name": "global",
124 "name": "global",
180 "name": "global",
218 "name": "global",
245 "global": true,
288 "name": "global",
Dtest-keyword-identify8.ts18 let global = 1;
22 class global {}
Dtest_module9-expected.txt8 "name": "global",
21 "global": true,
Dtest_module-expected.txt278 "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 …]
Dtest_module8-expected.txt24 "name": "global",
51 "global": true,
Dtest_module10-expected.txt94 "name": "global",
107 "global": true,
Dtest_module8.ts18 declare global {}
Dtest_module9.ts17 declare global
Dtest_module10.ts19 declare global
/arkcompiler/ets_frontend/es2panda/test/
Dtest262harness.js18 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/
Dglobal_this_ts.ts18 var global = globalThis;
19 print(typeof global);
/arkcompiler/ets_runtime/test/quickfix/global_var/
Dexpect_output.txt17 patch old global var :100
18 patch new global var :undefined
23 base global var :100
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DunaryExpression.cpp48 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/
Djs_regexp_iterator.cpp57 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/
DREADME.md13 * 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 …]
DREADME-cn.md190 `-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/
DtsModuleDeclaration.h38 bool global, bool isInstantiated = true)
44 global_(global), in Statement()
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationGlobal4/
Df2.ts22 declare global {
Df1.ts22 declare global {
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/moduleAugmentationGlobal3/
Df2.ts25 declare global {

12345