public void markAsTemplate()

in src/main/java/org/apache/sling/scripting/sightly/java/compiler/impl/VariableDescriptor.java [99:104]


    public void markAsTemplate() {
        if (scope != VariableScope.DYNAMIC) {
            throw new UnsupportedOperationException("Only dynamic variables can be marked as templates");
        }
        templateVariable = true;
    }