(STGroup g, String name)
| 1214 | } |
| 1215 | |
| 1216 | public Object getDictionary(STGroup g, String name) { |
| 1217 | if ( g.isDictionary(name) ) { |
| 1218 | return g.rawGetDictionary(name); |
| 1219 | } |
| 1220 | if ( g.imports!=null ) { |
| 1221 | for (STGroup sup : g.imports) { |
| 1222 | Object o = getDictionary(sup, name); |
| 1223 | if ( o!=null ) return o; |
| 1224 | } |
| 1225 | } |
| 1226 | return null; |
| 1227 | } |
| 1228 | |
| 1229 | /** |
| 1230 | * Set any default argument values that were not set by the invoking |
no test coverage detected