Turns a path into an AST.

Namespace: NHibernate.Hql.Ast.ANTLR.Util
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static IASTNode ParsePath(
	string path,
	IASTFactory factory
)
Visual Basic
Public Shared Function ParsePath ( _
	path As String, _
	factory As IASTFactory _
) As IASTNode
Visual C++
public:
static IASTNode^ ParsePath(
	String^ path, 
	IASTFactory^ factory
)

Parameters

path
Type: System..::..String
The path.
factory
Type: NHibernate.Hql.Ast.ANTLR.Tree..::..IASTFactory
The AST factory to use.

Return Value

An HQL AST representing the path.

See Also