本文整理汇总了C#中Galaxy_Editor_2.Compiler.Generated.node.TypedList类的典型用法代码示例。如果您正苦于以下问题:C# TypedList类的具体用法?C# TypedList怎么用?C# TypedList使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TypedList类属于Galaxy_Editor_2.Compiler.Generated.node命名空间,在下文中一共展示了TypedList类的17个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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_);
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:10,代码来源:prods.cs
示例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_);
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:10,代码来源:prods.cs
示例3: AInitializerDecl
public AInitializerDecl()
{
this._initializer_param_ = new TypedList(new InitializerParam_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例4: AGenericType
public AGenericType()
{
this._generic_types_ = new TypedList(new GenericTypes_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例5: AEnumDecl
public AEnumDecl()
{
this._values_ = new TypedList(new Values_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例6: AEnrichmentDecl
public AEnrichmentDecl()
{
this._decl_ = new TypedList(new Decl_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例7: ADelegateInvokeExp
public ADelegateInvokeExp()
{
this._args_ = new TypedList(new Args_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例8: ADeconstructorDecl
public ADeconstructorDecl()
{
this._formals_ = new TypedList(new Formals_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例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_);
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:16,代码来源:prods.cs
示例10: ASyncInvokeExp
public ASyncInvokeExp()
{
this._args_ = new TypedList(new Args_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例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_);
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:12,代码来源:prods.cs
示例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_);
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:26,代码来源:prods.cs
示例13: AUsingDecl
public AUsingDecl()
{
this._namespace_ = new TypedList(new Namespace_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例14: AConstructorDecl
public AConstructorDecl()
{
this._formals_ = new TypedList(new Formals_Cast(this));
this._base_args_ = new TypedList(new BaseArgs_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:5,代码来源:prods.cs
示例15: AASourceFile
public AASourceFile()
{
this._decl_ = new TypedList(new Decl_Cast(this));
this._usings_ = new TypedList(new Usings_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:5,代码来源:prods.cs
示例16: AAsyncInvokeStm
public AAsyncInvokeStm()
{
this._args_ = new TypedList(new Args_Cast(this));
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:4,代码来源:prods.cs
示例17: AShadySAssignmentExp
public AShadySAssignmentExp(
TConst _const_,
IList _pre_pointers_,
PLvalue _lvalue_,
TLt _generic_token_,
IList _generic_types_,
IList _post_pointers_,
IList _local_decl_right_
)
{
SetConst(_const_);
this._pre_pointers_ = new TypedList(new PrePointers_Cast(this));
this._pre_pointers_.Clear();
this._pre_pointers_.AddAll(_pre_pointers_);
SetLvalue(_lvalue_);
SetGenericToken(_generic_token_);
this._generic_types_ = new TypedList(new GenericTypes_Cast(this));
this._generic_types_.Clear();
this._generic_types_.AddAll(_generic_types_);
this._post_pointers_ = new TypedList(new PostPointers_Cast(this));
this._post_pointers_.Clear();
this._post_pointers_.AddAll(_post_pointers_);
this._local_decl_right_ = new TypedList(new LocalDeclRight_Cast(this));
this._local_decl_right_.Clear();
this._local_decl_right_.AddAll(_local_decl_right_);
}
开发者ID:Whimsyduke,项目名称:GalaxyEditorPlusPlus,代码行数:26,代码来源:prods.cs
注:本文中的Galaxy_Editor_2.Compiler.Generated.node.TypedList类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论