Rhino.Ast.VariableDeclaration.IsLet C# (CSharp) Method

IsLet() public method

Returns true if this is a Rhino.Token.LET declaration.
public IsLet ( ) : bool
return bool
		public virtual bool IsLet()
		{
			return type == Token.LET;
		}