Searched full:because (Results 1 – 25 of 205) sorted by relevance
123456789
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | subtypingWithCallSignatures.ts | 25 let r = foo1((x: number) => 1); // ok because base returns void 26 let r2 = foo1(<T>(x: T) => ''); // ok because base returns void 30 let r3 = foo2((x: number, y: number) => 1); // ok because base returns void 31 let r4 = foo2(<T>(x: T) => ''); // ok because base returns void
|
D | subtypingWithConstructSignatures.ts | 26 let r = foo1(rarg1); // ok because base returns void 28 let r2 = foo1(rarg2); // ok because base returns void 33 let r3 = foo2(r3arg1); // ok because base returns void 35 let r4 = foo2(r4arg1); // ok because base returns void
|
D | arrayLiteralContextualType.ts | 51 ]); // Legal because of the contextual type IAnimal provided by the parameter 65 ]); // Legal because of the contextual type IAnimal provided by the parameter 75 foo(arr); // ok because arr is Array<Giraffe|Elephant> not {}[] 80 bar(arr); // ok because arr is Array<Giraffe|Elephant> not {}[]
|
D | useDefineForClassFieldsFlagDefaulttargetesnext.ts | 23 // For esNext should be emitted 'as is' because useDefineForClassFields defaults to true 24 … as an assignment after the class definition (not Object.defineProperty) because useDefineForClass…
|
D | useDefineForClassFieldsFlagDefaulttargetes2020.ts | 23 // For esNext should be emitted 'as is' because useDefineForClassFields defaults to true 24 … as an assignment after the class definition (not Object.defineProperty) because useDefineForClass…
|
D | externalModuleWithoutCompilerFlag1.ts | 22 // Not on line 0 because we want to verify the error is placed in the appropriate location.
|
D | libCompileChecks.ts | 22 // This test is effectively the 'lib check' for all our .d.ts files because we use skipLibCheck
|
D | partiallyAmbientFundule.ts | 25 function foo () { } // Legal, because module is ambient
|
D | partiallyAmbientClodule.ts | 25 class foo { } // Legal, because module is ambient
|
D | typedGenericPrototypeMember.ts | 25 List.prototype.add("abc"); // Valid because T is instantiated to any
|
/arkcompiler/runtime_core/cmake/ |
D | ClangTidy.cmake | 96 # because of its syntax limitations (in particular, all checks should be passed 144 … "-bugprone-macro-parentheses" # disabled because it is hard to write macros with types with it 145 "-llvm-header-guard" # disabled because of incorrect root prefix 146 "-llvm-include-order" # disabled because conflicts with the clang-format 147 "-readability-identifier-naming" # disabled because we will use little-hump-style 149 …"-fuchsia-trailing-return" # disabled because we have a lot of false positives and it is stylisti… 150 …"-fuchsia-default-arguments-calls" # disabled because we use functions with default arguments a lot 151 …"-fuchsia-default-arguments-declarations" # disabled because we use functions with default argumen…
|
/arkcompiler/runtime_core/compiler/docs/ |
D | interface_inline_cache.md | 52 because read and write 64bit is atomic, same `cache` maybe use at same time 56 2. because `class address` is no move in ark, so we do not need to worry that the saved class will … 63 because method* is 64bit, it must be indirectly stored,cache only have 32bit to use 100 because Method* is 8bit align, so Method* can be compressed. So the actual range we can store is:
|
D | aot_cha.md | 82 For JIT compiler steps 2-3-4 is merged into one, because it can obtain the index of method in virtu… 85 For AOT compilation the method and its index in virtual table is unknown because at runtime the cha… 91 because the MethodPtr is needed only to obtain the virtual table index. The indices inside virtual …
|
D | reg_alloc_graph_coloring_doc.md | 20 …(to sequential numbering) in order <caller-saved, callee-saved>. In fact because these values with… 49 …s “Full”-busy bitset. Satisfying it provide us the best case allocation, because it’s not only doe… 58 … in case of high register pressure, fallback to LinearScan is performed. Because entire allocation…
|
/arkcompiler/runtime_core/docs/ |
D | on-stack-replacement.md | 66 applicable for them, because methods' loop-headers are not marked as osr-entry. 88 The first point is necessary because the Panda compiler can place some constants in the cpu registe… 135 Most part of the OSR entry is written in an assembly language, because CFrame is resided in the nat…
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler_manager.cpp | 106 LOG_ECMA(ERROR) << "Can not register pgo saving signal, because encoder is null."; in RegisterSavingSignal() 110 LOG_ECMA(DEBUG) << "Can not register pgo saving signal, because encoder is initialized."; in RegisterSavingSignal()
|
/arkcompiler/runtime_core/tests/verifier-tests/ |
D | issue_964.pa | 16 f64toi32 # instruction is invalid because acc value does not match expected type.
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
D | varRedeclaration10.ts | 18 TODO: this test is disabled because it is not comaptible with the current implementation of the des…
|
D | varRedeclaration5.ts | 18 TODO: this test is disabled because it is not comaptible with the current implementation of the des…
|
D | varRedeclaration7.ts | 18 TODO: this test is disabled because it is not comaptible with the current implementation of the des…
|
D | varRedeclaration8.ts | 18 TODO: this test is disabled because it is not comaptible with the current implementation of the des…
|
D | as_expression_1-expected.txt | 99 TypeError: Conversion of type 'string' to type 'number' may be a mistake because neither type suffi…
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
D | bcopt_type_adaption_test.cpp | 48 // 4: size must be multiple of 4 because values consits of tuple of tag, order, tag, type in ExtractTypeinfo() 234 …AddTypeinfo(lit_arr, ADD_IDX + 1 - num_invalid, STR_TYPE); // exclude invalid insns because they … 259 …int32_t ldai_type_idx = opt_ldai_idx - num_invalid; // exclude invalid insns because they do not … 273 …int32_t add_type_idx = opt_add_idx - num_invalid; // exclude invalid insns because they do not em… 348 …AddTypeinfo(lit_arr, ADD_IDX + 1 - num_invalid, STR_TYPE); // exclude invalid insns because they … 371 …int32_t add_type_idx = opt_add_idx - num_invalid; // exclude invalid insns because they do not em…
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/jsFileCompilationDuplicateVariable/ |
D | b.js | 21 let x = "hello"; // Error is recorded here, but suppressed because the js file isn't checked
|
/arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
D | test_reporter.rb | 58 @logger.log 2, "Skip test #{@pa_file}, because 'runner_option: ignore' tag is defined" 62 @logger.log 2, "Skip test #{@pa_file}, because run only test with 'runner_option: ignore' tag"
|
123456789