Examples of gatherPropertyReferences()


Examples of org.auraframework.expression.Expression.gatherPropertyReferences()

            String raw = getRawValue();
            Set<PropertyReference> propRefs = null;
            if (type == TokenType.EXPRESSION) {
              propRefs = Sets.newHashSetWithExpectedSize(2);
                Expression e = AuraImpl.getExpressionAdapter().buildExpression(unwrap(raw), location);
                e.gatherPropertyReferences(propRefs);
                result = e;
            } else {
                // Let's see if we can find any "naked" $Label.section.name references in the plain text
                Matcher matcher = LABEL_GVP_PATTERN.matcher(raw);
                while (matcher.find()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.