Skip to content

Commit

Permalink
fixed minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Aug 24, 2023
1 parent 5e0d3aa commit f3ae03b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DrAmbiguity.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ Model update(Msg::commitGrammar(int selector), Model m) {
m.examples = for (<str ex, Symbol s, Maybe[Tree] t, str _st> <- m.examples) {
try {
tt = reparse(m.grammar, s, ex);
append <ex, s, just(tt), status(just(t))>;
append <ex, s, just(tt), status(just(tt))>;
}
catch ParseError(_e) :
append <ex, s, nothing(), status(nothing())>;
Expand Down
2 changes: 1 addition & 1 deletion src/GrammarEditor.rsc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//@bootstrapParser
@bootstrapParser
module GrammarEditor

import lang::rascal::grammar::definition::Modules;
Expand Down

0 comments on commit f3ae03b

Please sign in to comment.