| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/typeCheckObjectCreationExpressionWithUndefinedCallResolutionData/ |
| D | file1.ts | 22 let classes = undefined; 23 AssertType(classes, "any"); 26 AssertType(new classes(null), "any"); 27 AssertType(classes, "any"); 29 return new classes(null);
|
| /arkcompiler/ets_frontend/testTs/ |
| D | skip_tests.json | 526 "./testTs/test/classes/mixinAccessModifiers.ts", 527 "./testTs/test/classes/awaitAndYieldInProperty.ts", 528 "./testTs/test/classes/mixinAbstractClasses.2.ts", 529 "./testTs/test/classes/nestedClassDeclaration.ts", 530 "./testTs/test/classes/indexMemberDeclarations/privateIndexer.ts", 531 "./testTs/test/classes/indexMemberDeclarations/publicIndexer.ts", 532 "./testTs/test/classes/indexMemberDeclarations/privateIndexer2.ts", 533 "./testTs/test/classes/indexMemberDeclarations/staticIndexers.ts", 534 "./testTs/test/classes/classStaticBlock/classStaticBlock7.ts", 535 "./testTs/test/classes/classStaticBlock/classStaticBlock16.ts", [all …]
|
| D | test-case.patch | 86 .../classes/mixinClassesAnnotated.ts | 3 + 87 .../classes/mixinClassesAnonymous.ts | 2 + 88 .../classes/mixinClassesMembers.ts | 5 + 515 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock1.ts 516 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock10.ts 517 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock11.ts 518 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock12.ts 519 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock13.ts 520 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock14.ts 521 create mode 100644 tests/cases/conformance/classes/classStaticBlock/classStaticBlock15.ts [all …]
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | ir_builder.h | 46 …es boundaries {}; // NOLINT(misc-non-private-member-variables-in-classes) 47 …ck *begin_bb {nullptr}; // NOLINT(misc-non-private-member-variables-in-classes) 48 …ck *end_bb {nullptr}; // NOLINT(misc-non-private-member-variables-in-classes) 49 …tor<CatchCodeBlock> *catches {nullptr}; // NOLINT(misc-non-private-member-variables-in-classes) 50 …tor<BasicBlock *> *basic_blocks {nullptr}; // NOLINT(misc-non-private-member-variables-in-classes) 51 … id {INVALID_ID}; // NOLINT(misc-non-private-member-variables-in-classes) 52 …tains_throwable_inst {false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
| /arkcompiler/runtime_core/tests/fuzztest/classdataaccessor_fuzzer/ |
| D | classdataaccessor_fuzzer.cpp | 29 auto classes = pf->GetClasses(); in ClassDataAccessorFuzzTest() local 31 for (size_t i = 0; i < classes.Size(); i++) { in ClassDataAccessorFuzzTest() 32 panda::panda_file::File::EntityId id(classes[i]); in ClassDataAccessorFuzzTest()
|
| /arkcompiler/runtime_core/tests/fuzztest/annotationdataaccessor_fuzzer/ |
| D | annotationdataaccessor_fuzzer.cpp | 30 auto classes = pf->GetClasses(); in AnnotationDataAccessorFuzzTest() local 32 for (size_t i = 0; i < classes.Size(); i++) { in AnnotationDataAccessorFuzzTest() 33 panda::panda_file::File::EntityId id(classes[i]); in AnnotationDataAccessorFuzzTest()
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/ |
| D | const_array_resolver_test.cpp | 42 maps.classes.emplace(0, "i64[]"); in TEST_F() 85 maps.classes.emplace(0, "i32[]"); in TEST_F() 123 maps.classes.emplace(0, "f32[]"); in TEST_F() 153 maps.classes.emplace(0, "f64[]"); in TEST_F() 184 maps.classes.emplace(0, "i8[]"); in TEST_F() 244 maps.classes.emplace(0, "panda/String[]"); in TEST_F() 296 maps.classes.emplace(0, "i64[]"); in TEST_F() 331 maps.classes.emplace(0, "i64[]"); in TEST_F() 358 maps.classes.emplace(0, "i64[]"); in TEST_F()
|
| /arkcompiler/runtime_core/panda/ |
| D | CMakeLists.txt | 26 "-cppcoreguidelines-non-private-member-variables-in-classes" 30 "-misc-non-private-member-variables-in-classes"
|
| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
| D | classFunctionMerging.ts | 21 // We allow ambient classes and functions to merge, this way callable classes
|
| D | declarationEmitShadowingInferNotRenamed.ts | 29 …t class | Record<string, new (...args: any[]) => Client> // or map of classes>( clientDef: D):… 35 | Record<string, new (...args: any[]) => Client> // or map of classes
|
| D | classStaticBlock21.ts | 19 // === tests/cases/conformance/classes/classStaticBlock/classStaticBlock21.ts ===
|
| /arkcompiler/runtime_core/libpandabase/os/ |
| D | stacktrace.cpp | 42 uintptr_t start_addr; // NOLINT(misc-non-private-member-variables-in-classes) 43 uintptr_t end_addr; // NOLINT(misc-non-private-member-variables-in-classes) 44 uintptr_t offset; // NOLINT(misc-non-private-member-variables-in-classes) 45 std::string filename; // NOLINT(misc-non-private-member-variables-in-classes) 46 DebugInfoStatus status {NOT_READ}; // NOLINT(misc-non-private-member-variables-in-classes) 47 DebugInfo debug_info; // NOLINT(misc-non-private-member-variables-in-classes)
|
| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test_tsc_ignore_list.txt | 43 es2panda/test/TypeScript/tests/cases/conformance/classes/constructorDeclarations/superCalls/emitSta… 44 es2panda/test/TypeScript/tests/cases/conformance/classes/constructorDeclarations/superCalls/emitSta… 45 es2panda/test/TypeScript/tests/cases/conformance/classes/members/privateNames/privateNameBadSuperUs…
|
| /arkcompiler/runtime_core/assembler/ |
| D | assembly-literals.h | 29 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 31 // NOLINTNEXTLINE(misc-non-private-member-variables-in-classes) 131 literals_; // NOLINT(misc-non-private-member-variables-in-classes)
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | reg_alloc_graph_coloring.h | 37 InstructionsRanges regular; // NOLINT(misc-non-private-member-variables-in-classes) 38 InstructionsRanges physical; // NOLINT(misc-non-private-member-variables-in-classes)
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | aot_cha.md | 9 situations when several same classes were passed and only the first is considered by VM. To identif… 37 The wrong usage. Some classes were omitted during AOT compilation due to the fact that they are not… 59 As boot class path represents the core classes of VM it should not depend on any of application cod…
|
| /arkcompiler/ets_frontend/es2panda/test/parser/js/ |
| D | test-class-definition4-expected.txt | 1 SyntaxError: Classes may not have static property named prototype [test-class-definition4.js:18:10]
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test-class-constructor17-expected.txt | 1 SyntaxError: Constructors for derived classes must contain a super call. [test-class-constructor17.…
|
| D | test-class-constructor14-expected.txt | 1 SyntaxError: Constructors for derived classes must contain a super call. [test-class-constructor14.…
|
| D | test-class-constructor8-expected.txt | 1 SyntaxError: Constructors for derived classes must contain a super call. [test-class-constructor8.t…
|
| D | test-class-constructor9-expected.txt | 1 SyntaxError: Constructors for derived classes must contain a super call. [test-class-constructor9.t…
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_date_time_format.h | 62 std::string property; // NOLINT(misc-non-private-member-variables-in-classes) 63 std::vector<IcuPatternEntry> pairs; // NOLINT(misc-non-private-member-variables-in-classes) 64 …<const std::string, const std::string> map; // NOLINT(misc-non-private-member-variables-in-classes) 65 std::vector<std::string> allowedValues; // NOLINT(misc-non-private-member-variables-in-classes)
|
| /arkcompiler/runtime_core/libpandafile/tests/ |
| D | file_test.cpp | 76 // check if [annon:panda-classes.abc extracted in memory from /xx/__OpenPandaFileFromZip__.zip] in CheckAnonMemoryName() 103 std::vector<ClassItem *> classes; variable 106 classes.push_back(container.GetOrCreateClassItem(name)); 121 classes[i]->GetOffset()); 215 const char *zip_filename_with_entry = "__OpenPandaFileOrZip__.zip!/classes.abc";
|
| /arkcompiler/ets_runtime/test/typeinfer/automatedcases/typeFromPrivatePropertyAssignmentJs/ |
| D | typeFromPrivatePropertyAssignmentJs.js | 19 // === tests/cases/conformance/classes/members/privateNames/typeFromPrivatePropertyAssignmentJs.js …
|
| /arkcompiler/ets_runtime/ecmascript/jspandafile/ |
| D | debug_info_extractor.h | 102 auto classes = jsPandaFile_->GetClasses(); in MatchWithLocation() local 103 for (size_t i = 0; i < classes.Size(); i++) { in MatchWithLocation() 104 panda_file::File::EntityId id(classes[i]); in MatchWithLocation()
|