Rhino.Ast.ObjectLiteral.SetIsDestructuring C# (CSharp) Method

SetIsDestructuring() public method

Marks this node as being a destructuring form - that is, appearing in a context such as for ([a, b] in ...) where it's the target of a destructuring assignment.
public SetIsDestructuring ( bool destructuring ) : void
destructuring bool
return void
		public virtual void SetIsDestructuring(bool destructuring)
		{
			isDestructuring = destructuring;
		}