| /arkcompiler/ets_frontend/es2panda/test/ |
| D | test_tsc_ignore_list.txt | 1 es2panda/test/TypeScript/tests/cases/compiler/bom-utf16be.ts 2 es2panda/test/TypeScript/tests/cases/compiler/collisionArgumentsInType.ts 3 es2panda/test/TypeScript/tests/cases/compiler/collisionArgumentsInterfaceMembers.ts 4 es2panda/test/TypeScript/tests/cases/compiler/elidedEmbeddedStatementsReplacedWithSemicolon.ts 5 es2panda/test/TypeScript/tests/cases/compiler/emitBundleWithShebang1.ts 6 es2panda/test/TypeScript/tests/cases/compiler/isLiteral1.ts 7 es2panda/test/TypeScript/tests/cases/compiler/isLiteral2.ts 8 es2panda/test/TypeScript/tests/cases/compiler/letAsIdentifier2.ts 9 es2panda/test/TypeScript/tests/cases/compiler/letInVarDeclOfForIn_ES5.ts 10 es2panda/test/TypeScript/tests/cases/compiler/letInVarDeclOfForIn_ES6.ts [all …]
|
| /arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
| D | recipe147.md | 1 # No dependencies on TypeScript code are currently allowed 7 Currently, the codebase implemented in the standard TypeScript language must not 12 ## TypeScript section in No dependencies on TypeScript code are currently allowed
|
| D | recipe79.md | 7 In TypeScript, catch clause variable type annotation must be ``any`` or ``unknown`` 11 ## TypeScript section in Type annotation in catch clause is not supported
|
| D | recipe142.md | 7 ArkTS does not support ``as const`` assertions because in the standard TypeScript 12 ## TypeScript section in ``as const`` assertions are not supported
|
| D | recipe145.md | 8 correctly types to be compiled and run. When porting from the standard TypeScript, 13 ## TypeScript section in Strict type checking is enforced
|
| D | recipe138.md | 7 Currently ArkTS does not support utility types from TypeScript extensions to the 14 ## TypeScript section in Some of utility types are not supported
|
| D | recipe2.md | 7 TypeScript has ``Symbol()`` API, which can be used among other things to generate 16 ## TypeScript section in ``Symbol()`` API is not supported
|
| D | recipe55.md | 9 TypeScript, implicit casting of strings in this context is not supported and must 13 ## TypeScript section in Unary operators ``+``, ``-`` and ``~`` work only on numbers
|
| D | recipe65.md | 7 In TypeScript, the left-hand side of an ``instanceof`` expression must be of the type 14 ## TypeScript section in ``instanceof`` operator is partially supported
|
| D | recipe102.md | 7 In TypeScript, an interface that extends two other interfaces with the same method 14 ## TypeScript section in Interface can not extend interfaces with the same method
|
| D | recipe120.md | 11 ## TypeScript section in ``import default as ...`` is not supported
|
| D | recipe46.md | 11 ## TypeScript section in Use arrow functions instead of function expressions
|
| D | recipe104.md | 11 ## TypeScript section in Interfaces cannot extend classes
|
| D | recipe3.md | 11 ## TypeScript section in Private '#' identifiers are not supported
|
| D | recipe87.md | 12 ## TypeScript section in ``throw`` statements cannot accept values of arbitrary types
|
| D | recipe51.md | 11 ## TypeScript section in Classes cannot be specified in ``implements`` clause
|
| D | recipe113.md | 11 ## TypeScript section in ``enum`` declaration merging is not supported
|
| D | recipe149.md | 12 ## TypeScript section in Classes cannot be used as objects
|
| D | recipe28.md | 10 ## TypeScript section in Indexed access types are not supported
|
| D | recipe150.md | 11 ## TypeScript section in ``import`` statements after other statements are not allowed
|
| /arkcompiler/ets_frontend/ets2panda/linter/ |
| D | README.md | 1 # TypeScript linter 11 …ment, it's recommended to use `VS Code`, as it has a full built-in support for TypeScript language. 53 `-f, --project-folder <path>` - defines path to folder with TypeScript sources and subfolders which… 59 All other command line arguments are considered as paths to TypeScript files. 61 …e.g.: `tslinter.sh @response-file.txt` ). Response file should contain TypeScript source paths (on…
|
| /arkcompiler/ets_frontend/ets2panda/linter/src/lib/statistics/scan/ |
| D | CountFile.ts | 24 TypeScript: ['.ts'], 35 TypeScript: /\/\/.*/g, constant 44 TypeScript: /\/\*.*?\*\//gs, constant
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/filesInfoTest/sourceLang/ |
| D | baseinput_base-expected.pa.txt | 59 .language TypeScript 71 .language TypeScript
|
| /arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/ |
| D | tsconfig.main.json | 6 …rue, /* Enable constraints that allow a TypeScript project to be us… 10 …ectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ 27 …// "moduleResolution": "node10", /* Specify how TypeScript looks up a file fro… 35 …// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file e… 41 …ort's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a … 47 …"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project.… 98 … true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
| /arkcompiler/runtime_core/static_core/plugins/ets/doc/cookbook/ |
| D | summary.rst | 127 delete p1.x // Compile-time error in TypeScript and ArkTS 128 delete (p1 as any).x // OK in TypeScript, compile-time error in ArkTS 135 p2.z = "Label"; // Compile-time error in TypeScript and ArkTS 136 (p2 as any).z = "Label" // OK in TypeScript, compile-time error in ArkTS 144 let prop = Symbol(); // OK in TypeScript, compile-time error in ArkTS 145 (p3 as any)[prop] = p3.x // OK in TypeScript, compile-time error in ArkTS 146 p3[prop] = p3.x // Compile-time error in TypeScript and ArkTS 154 p4.x = "Hello!"; // Compile-time error in TypeScript and ArkTS 155 (p4 as any).x = "Hello!" // OK in TypeScript, compile-time error in ArkTS
|