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()) {