Skip to content

Commit e1320fe

Browse files
committed
feat: allow an override modifier in abstract method signatures
1 parent b5f38c7 commit e1320fe

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

common/define-grammar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,7 @@ module.exports = function defineGrammar(dialect) {
348348
abstract_method_signature: $ => seq(
349349
optional($.accessibility_modifier),
350350
'abstract',
351+
optional($.override_modifier),
351352
optional(choice('get', 'set', '*')),
352353
field('name', $._property_name),
353354
optional('?'),

0 commit comments

Comments
 (0)