C# Class Scriban.Runtime.ScriptNode

Base class for the abstract syntax tree of a scriban program.
Show file Open project: lunet-io/scriban Class Usage Examples

Public Properties

Property Type Description
Span Scriban.Parsing.SourceSpan

Public Methods

Method Description
Evaluate ( TemplateContext context ) : void

Evaluates this instance with the specified context.

Method Details

Evaluate() public abstract method

Evaluates this instance with the specified context.
public abstract Evaluate ( TemplateContext context ) : void
context TemplateContext The template context.
return void

Property Details

Span public property

The source span of this node.
public SourceSpan,Scriban.Parsing Span
return Scriban.Parsing.SourceSpan