Find an attribute via dynamic scoping up enclosing scope chain. Only look for a dictionary definition if the attribute is not found, so attributes sent in to a template override dictionary names. Return ST#EMPTY_ATTR if found definition but no value.
(InstanceScope scope, String name)
| 1201 | */ |
| 1202 | |
| 1203 | public Object getAttribute(InstanceScope scope, String name) { |
| 1204 | InstanceScope current = scope; |
| 1205 | while ( current !=null ) { |
| 1206 | ST p = current.st; |
| 1207 | FormalArgument localArg = null; |
| 1208 | if ( p.impl.formalArguments!=null ) localArg = p.impl.formalArguments.get(name); |
| 1209 | if ( localArg !=null ) { |
| 1210 | Object o = p.locals[localArg.index]; |
| 1211 | return o; |
| 1212 | } |
| 1213 | current = current.parent; // look up enclosing scope chain |
| 1214 | } |
| 1215 | // got to root scope and no definition, try dictionaries in group and up |
| 1216 | final ST self = scope.st; |
| 1217 | STGroup g = self.impl.nativeGroup; |
| 1218 | Object o = getDictionary(g, name); |
| 1219 | if ( o !=null ) return o; |
| 1220 | |
| 1221 | // not found, report unknown attr |
| 1222 | throw new STNoSuchAttributeException(name, scope); |
| 1223 | } |
| 1224 | |
| 1225 | public Object getDictionary(STGroup g, String name) { |
| 1226 | if ( g.isDictionary(name) ) { |
no test coverage detected