src/main/java/org/apache/sling/scripting/core/impl/DefaultSlingScript.java [246:254]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                public Bindings getBindings(final int scope) {
                    switch (scope) {
                        case SlingScriptConstants.SLING_SCOPE:
                            return slingScope;
                        case 100:
                            return this.engineScope;
                        case 200:
                            return this.globalScope;
                        default:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/scripting/core/impl/bundled/BundledScriptContext.java [66:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Bindings getBindings(final int scope) {
        switch (scope) {
            case SlingScriptConstants.SLING_SCOPE:
                return slingScope;
            case 100:
                return this.engineScope;
            case 200:
                return this.globalScope;
            default:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



