Uses of Class
io.pebbletemplates.pebble.template.ScopeChain
-
Packages that use ScopeChain Package Description io.pebbletemplates.pebble.template -
-
Uses of ScopeChain in io.pebbletemplates.pebble.template
Fields in io.pebbletemplates.pebble.template declared as ScopeChain Modifier and Type Field Description private ScopeChain
EvaluationContextImpl. scopeChain
A scope is a set of visible variables.private ScopeChain
GlobalContext. scopeChain
Methods in io.pebbletemplates.pebble.template that return ScopeChain Modifier and Type Method Description ScopeChain
ScopeChain. deepCopy()
Creates a deep copy of the ScopeChain.ScopeChain
EvaluationContextImpl. getScopeChain()
Returns the scope chain data structure that allows variables to be added/removed from the current scope and retrieved from the nearest visible scopes.Constructors in io.pebbletemplates.pebble.template with parameters of type ScopeChain Constructor Description EvaluationContextImpl(PebbleTemplateImpl self, boolean strictVariables, java.util.Locale locale, int maxRenderedSize, ExtensionRegistry extensionRegistry, PebbleCache<CacheKey,java.lang.Object> tagCache, java.util.concurrent.ExecutorService executorService, java.util.List<PebbleTemplateImpl> importedTemplates, java.util.Map<java.lang.String,PebbleTemplateImpl> namedImportedTemplates, ScopeChain scopeChain, Hierarchy hierarchy, EvaluationOptions evaluationOptions)
Constructor used to provide all final variables.GlobalContext(ScopeChain scopeChain)
-