in src/main/java/org/apache/sling/scripting/sightly/java/compiler/impl/VariableAnalyzer.java [102:112]
public VariableDescriptor descriptor(String name) {
String lowerName = name.toLowerCase();
VariableDescriptor descriptor = tracker.get(lowerName);
if (descriptor == null) {
descriptor = staticVariables.get(lowerName);
}
if (descriptor == null) {
descriptor = dynamicDescriptor(lowerName);
}
return descriptor;
}