Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove late modifier for Dart generated context classes #3286

Merged
merged 3 commits into from
Dec 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contributors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ YYYY/MM/DD, github id, Full name, email
2021/08/25, XenoAmess, Jin Xu, [email protected]
2021/09/08, jmcken8, Joel McKenzie, [email protected]
2021/09/23, skalt, Steven Kalt, [email protected]
2021/09/26, idraper, Isaac Draper, [email protected]
2021/10/10, tools4origins, Erwan Guyomarc'h, [email protected]
2021/10/19, jcking, Justin King, [email protected]
2021/10/31, skef, Skef Iterum, [email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ class <struct.name> extends <if(contextSuperClass)><contextSuperClass><else>Pars

AltLabelStructDecl(struct,attrs,getters,dispatchMethods) ::= <<
class <struct.name> extends <struct.parentRule; format="cap">Context {
<attrs:{a | late <a>;}; separator="\n">
<attrs:{a | <a>;}; separator="\n">
<getters:{g | <g>}; separator="\n">
<struct.name>(<struct.parentRule; format="cap">Context ctx) { copyFrom(ctx); }
<dispatchMethods; separator="\n">
Expand Down