Home
last modified time | relevance | path

Searched full:trailingcomma (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/npm/node_modules/smart-buffer/
D.prettierrc.yaml5 trailingComma: none
/third_party/node/deps/npm/node_modules/socks/
D.prettierrc.yaml5 trailingComma: none
/third_party/typescript_eslint/
D.prettierrc.json13 "trailingComma": "all", string
/third_party/node/deps/npm/node_modules/cli-table3/
Dpackage.json116 "trailingComma": "es5" string
/third_party/grpc/test/core/json/
Djson_test.cc239 TEST(Json, TrailingComma) { in TEST() argument
/third_party/node/deps/acorn/acorn/dist/
Dacorn.js742 this.trailingComma =
751 if (refDestructuringErrors.trailingComma > -1)
752 …{ this.raiseRecoverable(refDestructuringErrors.trailingComma, "Comma is not permitted after the re…
2239 oldTrailingComma = refDestructuringErrors.trailingComma;
2240 refDestructuringErrors.parenthesizedAssign = refDestructuringErrors.trailingComma = -1;
2259 …refDestructuringErrors.parenthesizedAssign = refDestructuringErrors.trailingComma = refDestructuri…
2275 if (oldTrailingComma > -1) { refDestructuringErrors.trailingComma = oldTrailingComma; }
2408 …if (refDestructuringErrors.trailingComma >= result.start) { refDestructuringErrors.trailingComma =…
2876 …(this.type === types.comma && refDestructuringErrors && refDestructuringErrors.trailingComma < 0) {
2877 refDestructuringErrors.trailingComma = this.start;
[all …]
Dacorn.mjs736 this.trailingComma =
745 if (refDestructuringErrors.trailingComma > -1)
746 …{ this.raiseRecoverable(refDestructuringErrors.trailingComma, "Comma is not permitted after the re…
2233 oldTrailingComma = refDestructuringErrors.trailingComma;
2234 refDestructuringErrors.parenthesizedAssign = refDestructuringErrors.trailingComma = -1;
2253 …refDestructuringErrors.parenthesizedAssign = refDestructuringErrors.trailingComma = refDestructuri…
2269 if (oldTrailingComma > -1) { refDestructuringErrors.trailingComma = oldTrailingComma; }
2402 …if (refDestructuringErrors.trailingComma >= result.start) { refDestructuringErrors.trailingComma =…
2870 …if (this.type === types.comma && refDestructuringErrors && refDestructuringErrors.trailingComma < …
2871 refDestructuringErrors.trailingComma = this.start;
[all …]
/third_party/flutter/engine/flutter/tools/licenses/lib/
Dlicenses.dart621 } while (lines.current.value.contains(trailingComma));
Dpatterns.dart28 final RegExp trailingComma = RegExp(r',[ */]*$');