Skip to content

Commit

Permalink
#3380 noname by default
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Sep 23, 2024
1 parent a0f2e2b commit 77c3fa9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions eo-parser/src/main/java/org/eolang/parser/EoSyntax.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ public final class EoSyntax implements Syntax {
*/
private final Input input;

/**
* Ctor.
*
* @param ipt The EO program to parse
*/
public EoSyntax(final Input ipt) {
this("unknown", ipt);
}

/**
* Ctor.
*
Expand Down

0 comments on commit 77c3fa9

Please sign in to comment.