| /arkcompiler/ets_frontend/ets2panda/compiler/scripts/ |
| D | signatures.yaml | 220 package: PKG_STD_CORE 223 package: PKG_STD_CORE 226 package: PKG_STD_CORE 229 package: PKG_STD_CORE 232 package: PKG_STD_CORE 235 package: PKG_STD_CORE 238 package: PKG_STD_CORE 241 package: PKG_STD_CORE 244 package: PKG_STD_CORE 247 package: PKG_STD_CORE [all …]
|
| D | signatures.rb | 39 data.packages.each do |package| 40 refs[package.ref] = package.name 54 sig = "%s.%s" % [refs[builtin.package], builtin.name]
|
| /arkcompiler/ets_frontend/es2panda/test/optimizer/ts/branch-elimination/projects/ts_ohmurl_project/ |
| D | test-import-namespace.ts | 17 import * as PACKAGE from "@package:myapp/test-export-package"; 24 || PACKAGE.FILE_TYPE !== "package" 37 if (PACKAGE.FILE_TYPE_VAR !== "package") {
|
| D | test-import-exec.ts | 17 …CKAGE_FILE_TYPE, FILE_TYPE_VAR as PACKAGE_FILE_TYPE_VAR} from "@package:myapp/test-export-package"; 25 || PACKAGE_FILE_TYPE !== "package" 39 if (PACKAGE_FILE_TYPE_VAR !== "package") {
|
| D | recordnames.txt | 5 test-export-package:myapp/test-export-package
|
| D | test-export-package.ts | 16 export const FILE_TYPE: string = "package" 17 export var FILE_TYPE_VAR: string = "package"
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/19.packages/ |
| D | bad_package_declarations.sts | 20 …time error occurs if: a package module contains no package header, or package headers of two packa…
|
| D | package_declarations.params.yaml | 15 - package P1 16 - package P1.A 18 package P1 21 package P1
|
| D | bad_package_declarations.params.yaml | 16 - package 18 package P1; 19 package P2;
|
| D | package_declarations.sts | 20 assert: One or more package modules form a package
|
| /arkcompiler/ets_frontend/legacy_bin/ |
| D | BUILD.gn | 60 source = "./api8/package.json" 67 source = "./api8/package.json" 74 source = "./api8/package.json" 81 source = "./api8/package-lock.json" 88 source = "./api8/package-lock.json" 95 source = "./api8/package-lock.json" 166 source = "./api8/package.json" 173 source = "./api8/package.json" 180 source = "./api8/package.json" 187 source = "./api8/package-lock.json" [all …]
|
| /arkcompiler/ets_frontend/ets2panda/test/tsconfig/paths/ |
| D | tsconfig.json | 5 "@package/component1/*": ["./lib/module1/*"], 6 "@package/component2": ["./lib/module2/"], 7 "@package/component22": ["./lib/module22/"]
|
| D | main.sts | 16 import { Foo } from "@package/component1/lib" 17 import { Bar } from "@package/component2" 18 import { Baz } from "@package/component22"
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/04.scopes/ |
| D | package_level.sts | 17 desc: Package level scope, package module 18 package: testing_package_level_scope 21 package testing_package_level_scope;
|
| /arkcompiler/runtime_core/tests/verifier-tests/ |
| D | access_field_nomodifier_core.pa | 15 … it must fail in Java if the class is nor inherited by current class, nor stays in the same package 22 # // Expected VerificationError: Access to the package protected object field is prohibited. 27 # package pckg; 33 # Class Package Subclass World
|
| /arkcompiler/runtime_core/static_core/tests/verifier-tests/ |
| D | access_field_nomodifier_core.pa | 15 … it must fail in Java if the class is nor inherited by current class, nor stays in the same package 22 # // Expected VerificationError: Access to the package protected object field is prohibited. 27 # package pckg; 33 # Class Package Subclass World
|
| /arkcompiler/runtime_core/static_core/verification/ |
| D | verification.yaml | 21 package_field: Access to package protected object field is prohibited. 24 protected_class: Access to package-private class is prohibited. 50 - package 79 protected_field: package 85 package_field: package 94 protected_method: package 100 package_method: package
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/ets_templates/ |
| D | test_metadata.py | 29 PACKAGE_PATTERN = re.compile(f"\\n\\s*package[\\t\\f\\v ]+(?P<package_name>\\w+{DOTS_WHITESPACES_P… 76 package: Optional[str] = None variable in TestMetadata 102 metadata['package'] = metadata.get("package") 103 if metadata['package'] is None: 104 metadata['package'] = get_package_statement(path)
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/06.method_declarations/overriding_by_instance_methods/ |
| D | overriding_private_method.sts | 18 …with package access in the same package as C, and either C declares mC or mA is a member of the di…
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | import-export.md | 20 … access modifier, single export directive or even the requirement that a package module can direct… 24 A separate module is a module without a package header. A separate module can optionally consist of… 72 …ule or package module is revealed during the parsing process of the package directive and is set w… 131 In case of package directive: 152 ### 3.2. Package level scope 154 Name declared on the package level should be accessible throughout the entire package. The name can… 155 Currently there is no package level scope, packages are handled almost exactly the same as separate… 156 …in other modules/compilation units, including another package module belonging to the same package… 159 ### 3.3. Build each package separately and link them into one abc 162 …element belongs to a separate package like std.math and std.time. It might be a good solution to s… [all …]
|
| /arkcompiler/runtime_core/static_core/docs/diagrams/ |
| D | task_manager-components.plantuml | 4 package "Task Queues" { 15 package "Worker threads pool" {
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/import_tests/packages/var-duplication/ |
| D | subpackage_module_2.sts | 16 package import_tests.packages.subpackage_b; 18 // Throw error: "a" is defined twice in this package.
|
| D | subpackage_module_1.sts | 16 package import_tests.packages.subpackage_b; 18 // Throw error: "a" is defined twice in this package.
|
| /arkcompiler/runtime_core/static_core/scripts/sdk/ |
| D | README.md | 15 To determine destination registry for SDK NPM package add following lines to `~/.npmrc`: 23 Publish npm package with `npm publish` command
|
| /arkcompiler/runtime_core/ |
| D | .gitignore | 22 static_core/plugins/ets/tools/declgen_ts2ets/package-lock.json 26 static_core/tools/sampler/scripts/package-lock.json
|