GetProperty() 공개 메소드

Returns the property being accessed.
Returns the property being accessed.
public GetProperty ( ) : Name
리턴 Name
예제 #1
0
		// only used for destructuring forms
		internal void DecompilePropertyGet(PropertyGet node)
		{
			Decompile(node.GetTarget());
			decompiler.AddToken(Token.DOT);
			Decompile(node.GetProperty());
		}
예제 #2
0
		private Node TransformPropertyGet(PropertyGet node)
		{
			Node target = Transform(node.GetTarget());
			string name = node.GetProperty().GetIdentifier();
			decompiler.AddToken(Token.DOT);
			decompiler.AddName(name);
			return CreatePropertyGet(target, null, name, 0);
		}