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