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)
| 1212 | */ |
| 1213 | |
| 1214 | public Object getAttribute(InstanceScope scope, String name) { |
| 1215 | InstanceScope current = scope; |
| 1216 | while ( current !=null ) { |
| 1217 | ST p = current.st; |
| 1218 | FormalArgument localArg = null; |
| 1219 | if ( p.impl.formalArguments!=null ) localArg = p.impl.formalArguments.get(name); |
| 1220 | if ( localArg !=null ) { |
| 1221 | Object o = p.locals[localArg.index]; |
| 1222 | return o; |
| 1223 | } |
| 1224 | current = current.parent; // look up enclosing scope chain |
| 1225 | } |
| 1226 | // got to root scope and no definition, try dictionaries in group and up |
| 1227 | final ST self = scope.st; |
| 1228 | STGroup g = self.impl.nativeGroup; |
| 1229 | Object o = getDictionary(g, name); |
| 1230 | if ( o !=null ) return o; |
| 1231 | |
| 1232 | // not found, report unknown attr |
| 1233 | throw new STNoSuchAttributeException(name, scope); |
| 1234 | } |
| 1235 | |
| 1236 | public Object getDictionary(STGroup g, String name) { |
| 1237 | if ( g.isDictionary(name) ) { |
no test coverage detected