Skip to content

Commit

Permalink
help is more helpful, better comments, and choosing from a list funct…
Browse files Browse the repository at this point in the history
…ion added
  • Loading branch information
Cauth006 authored and Cauth006 committed Feb 28, 2024
1 parent 0a6102a commit 762c28a
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 82 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@ ${if isData then "" else s"""
return "${fName}";
}

@Override
public String[] getChildNames() {
return namedSig.inputNames;
}

${otImpl}

@Override
Expand Down Expand Up @@ -309,6 +314,7 @@ ${body.translation}
}

public String getName(){ return "${fName}"; }
public String[] getChildNames(){return namedSig.inputNames;}
public common.RTTIManager.Nonterminalton<${fnnt}> getNonterminalton(){ return ${fnnt}.nonterminalton; }

public String getTypeUnparse() { return "${escapeString(ns.unparse)}"; }
Expand Down
Loading

1 comment on commit 762c28a

@Michaelcauthorn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also tried to add something to Productions that did not work

Please sign in to comment.