C# Class CompiledHandlebars.Compiler.AST.Expressions.IdentifierElement

Represents an identifier inside Handlebars as a linked list of IdentifierElements IdentifierElements are either Identifier PathUp ("../") Identifier seperators (".","/") can be ignored as their semantic value is represented as seperated Identifier objects ../A.B => PathUp->Identifier(A)->Identifier(B)
Show file Open project: Noxum/CompiledHandlebars Class Usage Examples

Protected Properties

Property Type Description
_next IdentifierElement

Private Methods

Method Description
IdentifierElement ( IdentifierElement next ) : System
TryEvaluate ( Stack contextStack, CompilationState state, Context &context ) : bool

Property Details

_next protected property

protected IdentifierElement,CompiledHandlebars.Compiler.AST.Expressions _next
return IdentifierElement