HashtableAst Class
Definition
The ast that represents a hash literal, e.g. @{a = 1}
.
public ref class HashtableAst : System::Management::Automation::Language::ExpressionAst
public class HashtableAst : System.Management.Automation.Language.ExpressionAst
type HashtableAst = class
inherit ExpressionAst
Public Class HashtableAst
Inherits ExpressionAst
- Inheritance
Constructors
HashtableAst(IScriptExtent, IEnumerable<Tuple<ExpressionAst,StatementAst>>) |
Construct a hash literal ast. |
Properties
Extent |
The extent in the source this ast represents. (Inherited from Ast) |
KeyValuePairs |
The pairs of key names and asts for values used to construct the hash table. |
Parent |
The parent tree for this node. (Inherited from Ast) |
StaticType |
The result type of a HashtableAst is always |
Methods
Copy() |
Copy the HashtableAst instance |
Find(Func<Ast,Boolean>, Boolean) |
Traverse the entire Ast, returning the first node in the tree for which |
FindAll(Func<Ast,Boolean>, Boolean) |
Traverse the entire Ast, returning all nodes in the tree for which |
SafeGetValue() |
Constructs the resultant object from the AST and returns it if it is safe. (Inherited from Ast) |
ToString() |
Formats the ast and returns a string. (Inherited from Ast) |
Visit(AstVisitor) |
Visit each node in the Ast, calling the methods in |
Visit(ICustomAstVisitor) |
Visit the Ast using a visitor that can choose how the tree traversal is performed. This visit method is for advanced uses of the visitor pattern where an AstVisitor is insufficient. (Inherited from Ast) |