Used by ST#add to add args one by one without turning on full formal args definition signal.
(FormalArgument a)
| 196 | |
| 197 | |
| 198 | public void addArg(FormalArgument a) { |
| 199 | if ( formalArguments==null ) { |
| 200 | formalArguments = Collections.synchronizedMap(new LinkedHashMap<String, FormalArgument>()); |
| 201 | } |
| 202 | a.index = formalArguments.size(); |
| 203 | formalArguments.put(a.name, a); |
| 204 | } |
| 205 | |
| 206 | |
| 207 | public void defineImplicitlyDefinedTemplates(STGroup group) { |
no test coverage detected