We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbe7134 commit 0eaa60bCopy full SHA for 0eaa60b
fluent-syntax/src/ast.js
@@ -249,10 +249,6 @@ export class Attribute extends SyntaxNode {
249
this.id = id;
250
this.value = value;
251
}
252
-
253
- get sortingKey() {
254
- return this.id.name;
255
- }
256
257
258
export class Variant extends SyntaxNode {
@@ -263,13 +259,6 @@ export class Variant extends SyntaxNode {
263
259
264
260
this.default = def;
265
261
266
267
268
- if (this.key instanceof NumberLiteral) {
269
- return this.key.value;
270
271
- return this.key.name;
272
273
262
274
275
export class NamedArgument extends SyntaxNode {
0 commit comments