Table of Contents

Interface IVisitor

Namespace
flx.SILQ.Statements
Assembly
flx.SILQ.dll

Visitor interface for statement nodes in the SILQ AST. Implementations should provide logic for each supported statement type.

public interface IVisitor

Methods

Visit(As)

Visits a As statement node.

void Visit(As statement)

Parameters

statement As

The as statement to visit.

Visit(From)

Visits a From statement node.

object Visit(From statement)

Parameters

statement From

The from statement to visit.

Returns

object

Visit(Function)

Visits a Function statement node.

void Visit(Function statement)

Parameters

statement Function

The function statement to visit.

Visit(Print)

Visits a Print statement node.

void Visit(Print statement)

Parameters

statement Print

The print statement to visit.

Visit(Select)

Visits a Select statement node.

void Visit(Select statement)

Parameters

statement Select

The select statement to visit.

Visit(Where)

Visits a Where statement node.

void Visit(Where statement)

Parameters

statement Where

The where statement to visit.