public void beforeAttributeValue()

in src/main/java/org/apache/sling/scripting/sightly/impl/plugin/AttributePlugin.java [122:127]


        public void beforeAttributeValue(PushStream stream, String attributeName, ExpressionNode attributeValue) {
            if (attributeName.equals(this.attributeName) && beforeCall) {
                emitWrite(stream);
                Patterns.beginStreamIgnore(stream);
            }
        }