Rhino.Ast.PropertyGet.GetTarget C# (CSharp) Метод

GetTarget() публичный Метод

Returns the object on which the property is being fetched.
Returns the object on which the property is being fetched. Should never be null .
public GetTarget ( ) : AstNode
Результат AstNode
		public virtual AstNode GetTarget()
		{
			return GetLeft();
		}

Usage Example

Пример #1
0
		// only used for destructuring forms
		internal void DecompilePropertyGet(PropertyGet node)
		{
			Decompile(node.GetTarget());
			decompiler.AddToken(Token.DOT);
			Decompile(node.GetProperty());
		}
All Usage Examples Of Rhino.Ast.PropertyGet::GetTarget