MCPcopy Index your code
hub / github.com/antlr/codebuff / defineFormalArgs

Method defineFormalArgs

output/java8/1.4.19/CompiledST.java:193–197  ·  view source on GitHub ↗
(List<FormalArgument> args)

Source from the content-addressed store, hash-verified

191
192
193 public void defineFormalArgs(List<FormalArgument> args) {
194 hasFormalArgs = true; // even if no args; it's formally defined
195 if ( args==null ) formalArguments = null;
196 else for (FormalArgument a : args) addArg(a);
197 }
198
199 /** Used by {@link ST#add} to add args one by one without turning on full formal args definition signal. */
200

Callers 1

compileMethod · 0.95

Calls 1

addArgMethod · 0.95

Tested by

no test coverage detected