src/main/java/org/apache/sling/scripting/core/impl/DefaultSlingScript.java [299:308]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    for (final int scope : SCOPES) {
                        final Bindings bindings = getBindings(scope);
                        if (bindings != null) {
                            final Object o = bindings.get(name);
                            if (o != null) {
                                return o;
                            }
                        }
                    }
                    return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/scripting/core/impl/bundled/BundledScriptContext.java [95:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        for (final int scope : SCOPES) {
            final Bindings bindings = getBindings(scope);
            if (bindings != null) {
                final Object o = bindings.get(name);
                if (o != null) {
                    return o;
                }
            }
        }
        return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



