109110111112113114115116117118
} // check namespace-default theme value = namespaceTheme.getDef().getVar(reference.getRoot()); if (!value.isPresent()) { throw new ThemeValueNotFoundException(reference.getRoot(), namespaceTheme, reference.getLocation()); } return value; }
339340341342343344345346347
} Set<String> namesSet = ImmutableSet.copyOf(names); for (PropertyReference ref : expressionRefs) { if (!namesSet.contains(ref.toString())) { throw new ThemeValueNotFoundException(ref.toString(), descriptor, getLocation()); } } }