Skip to content

Commit

Permalink
Enable various variables and factories with no implementation, awaiti…
Browse files Browse the repository at this point in the history
…ng augmentation (#4106)
  • Loading branch information
eernstg authored Sep 26, 2024
1 parent 13277c3 commit 5995342
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions working/augmentation-libraries/feature-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,7 @@ topLevelDeclaration ::= classDeclaration
| 'augment'? functionSignature functionBody
| 'augment'? getterSignature functionBody
| 'augment'? setterSignature functionBody
| 'augment'? ('final' | 'const') type? staticFinalDeclarationList ';'
| 'augment'? ('final' | 'const') type? initializedIdentifierList ';'
| 'augment'? 'late' 'final' type? initializedIdentifierList ';'
| 'augment'? 'late'? varOrType initializedIdentifierList ';'
Expand Down Expand Up @@ -1179,17 +1179,17 @@ enumEntry ::= metadata 'augment'? identifier argumentPart?
| metadata 'augment'? identifier typeArguments?
'.' identifierOrNew arguments
declaration ::= 'external' factoryConstructorSignature
declaration ::= 'external'? factoryConstructorSignature
| 'external' constantConstructorSignature
| 'external' constructorSignature
| ('external' 'static'?)? getterSignature
| ('external' 'static'?)? setterSignature
| ('external' 'static'?)? functionSignature
| 'external'? 'static'? getterSignature
| 'external'? 'static'? setterSignature
| 'external'? 'static'? functionSignature
| 'external' ('static'? finalVarOrType | 'covariant' varOrType) identifierList
| 'external'? operatorSignature
| 'abstract' (finalVarOrType | 'covariant' varOrType) identifierList
| 'augment'? 'static' 'const' type? staticFinalDeclarationList
| 'augment'? 'static' 'final' type? staticFinalDeclarationList
| 'augment'? 'static' 'const' type? initializedIdentifierList
| 'augment'? 'static' 'final' type? initializedIdentifierList
| 'augment'? 'static' 'late' 'final' type? initializedIdentifierList
| 'augment'? 'static' 'late'? varOrType initializedIdentifierList
| 'augment'? 'covariant' 'late' 'final' type? identifierList
Expand Down

0 comments on commit 5995342

Please sign in to comment.