/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/ |
D | recipe71.md | 1 # The comma operator ``,`` is supported only in ``for`` loops 3 Rule ``arkts-no-comma-outside-loops`` 7 ArkTS supports the comma operator ``,`` only in ``for`` loops. Otherwise, 36 // Use explicit execution order instead of the comma operator:
|
/arkcompiler/ets_frontend/ets2panda/linter-4.2/docs/rules/ |
D | recipe71.md | 1 # The comma operator ``,`` is supported only in ``for`` loops 3 Rule ``arkts-no-comma-outside-loops`` 7 ArkTS supports the comma operator ``,`` only in ``for`` loops. Otherwise, 36 // Use explicit execution order instead of the comma operator:
|
/arkcompiler/ets_frontend/ets2panda/compiler/debugger/ |
D | debuginfoDumper.cpp | 27 static const char *PutComma(bool comma) in PutComma() argument 29 return comma ? "," : ""; in PutComma() 33 void DebugInfoDumper::WrapArray(const char *name, const std::vector<T> &array, bool comma) in WrapArray() argument 41 ss_ << "]" << PutComma(comma); in WrapArray() 88 ss_ << "]" << PutComma(comma); in WrapArray() 208 void DebugInfoDumper::WriteProperty(const char *key, const Value &value, bool comma) in WriteProperty() argument 222 comma ? ss_ << "," : ss_ << std::endl; in WriteProperty()
|
D | debuginfoDumper.h | 38 void WrapArray(const char *name, const std::vector<T> &array, bool comma = true); 41 void WriteProperty(const char *key, const Value &value, bool comma = true);
|
/arkcompiler/ets_frontend/es2panda/compiler/debugger/ |
D | debuginfoDumper.cpp | 27 static const char *PutComma(bool comma) in PutComma() argument 29 return comma ? "," : ""; in PutComma() 33 void DebugInfoDumper::WrapArray(const char *name, const std::vector<T> &array, bool comma) in WrapArray() argument 41 ss_ << "]" << PutComma(comma); in WrapArray() 91 ss_ << "]" << PutComma(comma); in WrapArray() 211 void DebugInfoDumper::WriteProperty(const char *key, const Value &value, bool comma) in WriteProperty() argument 225 comma ? ss_ << "," : ss_ << std::endl; in WriteProperty()
|
D | debuginfoDumper.h | 38 void WrapArray(const char *name, const std::vector<T> &array, bool comma = true); 41 void WriteProperty(const char *key, const Value &value, bool comma = true);
|
/arkcompiler/runtime_core/static_core/verification/absint/ |
D | reg_context.h | 201 bool comma = false; in DumpRegs() local 202 EnumerateAllRegs([&comma, &logString, &tsys](int num, const auto &absTypeVal) { in DumpRegs() 206 if (comma) { in DumpRegs() 210 comma = true; in DumpRegs()
|
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/ |
D | enum5-expected.txt | 1 SyntaxError: Missing comma between enum constants [enum5.ets:18:3]
|
/arkcompiler/ets_frontend/test262/ |
D | dynamicImport_tests.txt | 7 nested-else-braceless-not-extensible-no-trailing-comma.js 16 nested-async-function-return-await-not-extensible-no-trailing-comma.js 27 top-level-not-extensible-no-trailing-comma.js 28 nested-async-function-not-extensible-no-trailing-comma.js 29 nested-if-not-extensible-no-trailing-comma.js 31 nested-else-not-extensible-no-trailing-comma.js 42 nested-async-arrow-function-await-not-extensible-no-trailing-comma.js 47 nested-arrow-assignment-expression-not-extensible-no-trailing-comma.js 48 nested-if-braceless-not-extensible-no-trailing-comma.js 50 nested-async-function-await-not-extensible-no-trailing-comma.js [all …]
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | compilation_driver.cpp | 226 const char comma = ','; in ParseOption() local 233 std::vector<std::string> methodNameVec = SplitString(methodNameList, comma); in ParseOption() 235 posComma = str.find_last_of(comma); in ParseOption()
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/07.object_literal/ |
D | trailing_comma_is_ignored.ets | 17 desc: The comma at the end of the composite class is ignored
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-parser.cpp | 1370 bool comma = false; in ParseOperandSignatureTypesList() local 1381 if (comma) { in ParseOperandSignatureTypesList() 1385 if (!ParseFunctionArgComma(comma)) { in ParseOperandSignatureTypesList() 2162 bool Parser::ParseFunctionArgComma(bool &comma) in ParseFunctionArgComma() argument 2164 if (comma && *context_ != Token::Type::DEL_COMMA) { in ParseFunctionArgComma() 2169 if (comma) { in ParseFunctionArgComma() 2173 comma = true; in ParseFunctionArgComma() 2183 bool comma = false; in ParseFunctionArgs() local 2194 if (!ParseFunctionArgComma(comma)) { in ParseFunctionArgs() 2288 bool Parser::ParseMetaListComma(bool &comma, bool eq) in ParseMetaListComma() argument [all …]
|
D | assembly-parser.h | 148 bool ParseFunctionArgComma(bool &comma); 152 bool ParseMetaListComma(bool &comma, bool eq);
|
/arkcompiler/runtime_core/static_core/assembler/ |
D | assembly-parser.cpp | 1416 bool comma = false; in ParseOperandSignatureTypesList() local 1427 if (comma) { in ParseOperandSignatureTypesList() 1431 if (!ParseFunctionArgComma(comma)) { in ParseOperandSignatureTypesList() 2247 bool Parser::ParseFunctionArgComma(bool &comma) in ParseFunctionArgComma() argument 2249 if (comma && *context_ != Token::Type::DEL_COMMA) { in ParseFunctionArgComma() 2254 if (comma) { in ParseFunctionArgComma() 2258 comma = true; in ParseFunctionArgComma() 2268 bool comma = false; in ParseFunctionArgs() local 2279 if (!ParseFunctionArgComma(comma)) { in ParseFunctionArgs() 2373 bool Parser::ParseMetaListComma(bool &comma, bool eq) in ParseMetaListComma() argument [all …]
|
D | assembly-parser.h | 149 bool ParseFunctionArgComma(bool &comma); 153 bool ParseMetaListComma(bool &comma, bool eq);
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/test262/ |
D | test262-excluded-ARM64-IRTOC.txt | 6 language/expressions/comma/tco-final.js
|
D | test262-ignored-LLVM.txt | 6 language/expressions/comma/tco-final.js
|
D | test262-ignored-IRTOC.txt | 6 language/expressions/comma/tco-final.js
|
D | test262-ignored-JIT.txt | 6 language/expressions/comma/tco-final.js
|
D | test262-ignored-AOT.txt | 4 language/expressions/comma/tco-final.js
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
D | cg_option.cpp | 674 size_t comma = tmpStr.find_first_of(",", 0); in SetRange() local 677 if (comma != std::string::npos) { in SetRange() 678 subRange.begin = std::stoul(tmpStr.substr(0, comma), nullptr); in SetRange() 679 … subRange.end = std::stoul(tmpStr.substr(comma + 1, std::string::npos - (comma + 1)), nullptr); in SetRange()
|
/arkcompiler/runtime_core/tests/cts-coverage-tool/ |
D | README.md | 23 --spec (-s) - ISA spec files, comma-separated, merged into one if multiple specified, required
|
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/ |
D | README.md | 23 --spec (-s) - ISA spec files, comma-separated, merged into one if multiple specified, required
|
/arkcompiler/runtime_core/static_core/scripts/third-party-lists/ |
D | public | 19 # * Fields in a record are separated by comma (,) without surrounding whitespaces
|
/arkcompiler/runtime_core/scripts/third-party-lists/ |
D | public | 19 # * Fields in a record are separated by comma (,) without surrounding whitespaces
|