本文整理汇总了C#中Galaxy_Editor_2.Compiler.Generated.node.TypedList类的典型用法代码示例。如果您正苦于以下问题:C# TypedList类的具体用法?C# TypedList怎么用?C# TypedList使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TypedList类属于Galaxy_Editor_2.Compiler.Generated.node命名空间,在下文中一共展示了TypedList类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AABlock
public AABlock(
IList _statements_,
TRBrace _token_
)
{
this._statements_ = new TypedList(new Statements_Cast(this));
this._statements_.Clear();
this._statements_.AddAll(_statements_);
SetToken(_token_);
}
示例2: ASimpleInvokeExp
public ASimpleInvokeExp(
TIdentifier _name_,
IList _args_
)
{
SetName(_name_);
this._args_ = new TypedList(new Args_Cast(this));
this._args_.Clear();
this._args_.AddAll(_args_);
}
示例3: AInitializerDecl
public AInitializerDecl()
{
this._initializer_param_ = new TypedList(new InitializerParam_Cast(this));
}
示例4: AGenericType
public AGenericType()
{
this._generic_types_ = new TypedList(new GenericTypes_Cast(this));
}
示例5: AEnumDecl
public AEnumDecl()
{
this._values_ = new TypedList(new Values_Cast(this));
}
示例6: AEnrichmentDecl
public AEnrichmentDecl()
{
this._decl_ = new TypedList(new Decl_Cast(this));
}
示例7: ADelegateInvokeExp
public ADelegateInvokeExp()
{
this._args_ = new TypedList(new Args_Cast(this));
}
示例8: ADeconstructorDecl
public ADeconstructorDecl()
{
this._formals_ = new TypedList(new Formals_Cast(this));
}
示例9: ATempNamespaceDecl
public ATempNamespaceDecl(
TNamespace _token_,
IList _name_,
IList _decl_,
TRBrace _end_token_
)
{
SetToken(_token_);
this._name_ = new TypedList(new Name_Cast(this));
this._name_.Clear();
this._name_.AddAll(_name_);
this._decl_ = new TypedList(new Decl_Cast(this));
this._decl_.Clear();
this._decl_.AddAll(_decl_);
SetEndToken(_end_token_);
}
示例10: ASyncInvokeExp
public ASyncInvokeExp()
{
this._args_ = new TypedList(new Args_Cast(this));
}
示例11: ASwitchStm
public ASwitchStm(
TSwitch _token_,
PExp _test_,
IList _cases_
)
{
SetToken(_token_);
SetTest(_test_);
this._cases_ = new TypedList(new Cases_Cast(this));
this._cases_.Clear();
this._cases_.AddAll(_cases_);
}
示例12: AStructDecl
public AStructDecl(
PVisibilityModifier _visibility_modifier_,
TClassToken _class_token_,
PExp _dimention_,
TIntegerLiteral _int_dim_,
TRBrace _end_token_,
TIdentifier _name_,
IList _generic_vars_,
PType _base_,
IList _locals_
)
{
SetVisibilityModifier(_visibility_modifier_);
SetClassToken(_class_token_);
SetDimention(_dimention_);
SetIntDim(_int_dim_);
SetEndToken(_end_token_);
SetName(_name_);
this._generic_vars_ = new TypedList(new GenericVars_Cast(this));
this._generic_vars_.Clear();
this._generic_vars_.AddAll(_generic_vars_);
SetBase(_base_);
this._locals_ = new TypedList(new Locals_Cast(this));
this._locals_.Clear();
this._locals_.AddAll(_locals_);
}
示例13: AUsingDecl
public AUsingDecl()
{
this._namespace_ = new TypedList(new Namespace_Cast(this));
}
示例14: AConstructorDecl
public AConstructorDecl()
{
this._formals_ = new TypedList(new Formals_Cast(this));
this._base_args_ = new TypedList(new BaseArgs_Cast(this));
}
示例15: AASourceFile
public AASourceFile()
{
this._decl_ = new TypedList(new Decl_Cast(this));
this._usings_ = new TypedList(new Usings_Cast(this));
}