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