Ejemplo n.º 1
0
 public AABlock(
         IList _statements_,
         TRBrace _token_
 )
 {
     this._statements_ = new TypedList(new Statements_Cast(this));
     this._statements_.Clear();
     this._statements_.AddAll(_statements_);
     SetToken(_token_);
 }
Ejemplo n.º 2
0
 public ASimpleInvokeExp(
         TIdentifier _name_,
         IList _args_
 )
 {
     SetName(_name_);
     this._args_ = new TypedList(new Args_Cast(this));
     this._args_.Clear();
     this._args_.AddAll(_args_);
 }
Ejemplo n.º 3
0
 public AInitializerDecl()
 {
     this._initializer_param_ = new TypedList(new InitializerParam_Cast(this));
 }
Ejemplo n.º 4
0
 public AGenericType()
 {
     this._generic_types_ = new TypedList(new GenericTypes_Cast(this));
 }
Ejemplo n.º 5
0
 public AEnumDecl()
 {
     this._values_ = new TypedList(new Values_Cast(this));
 }
Ejemplo n.º 6
0
 public AEnrichmentDecl()
 {
     this._decl_ = new TypedList(new Decl_Cast(this));
 }
Ejemplo n.º 7
0
 public ADelegateInvokeExp()
 {
     this._args_ = new TypedList(new Args_Cast(this));
 }
Ejemplo n.º 8
0
 public ADeconstructorDecl()
 {
     this._formals_ = new TypedList(new Formals_Cast(this));
 }
Ejemplo n.º 9
0
 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_);
 }
Ejemplo n.º 10
0
 public ATempNamespaceDecl()
 {
     this._name_ = new TypedList(new Name_Cast(this));
     this._decl_ = new TypedList(new Decl_Cast(this));
 }
Ejemplo n.º 11
0
 public ASyncInvokeExp()
 {
     this._args_ = new TypedList(new Args_Cast(this));
 }
Ejemplo n.º 12
0
 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_);
 }
Ejemplo n.º 13
0
 public ASwitchStm()
 {
     this._cases_ = new TypedList(new Cases_Cast(this));
 }
Ejemplo n.º 14
0
 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_);
 }
Ejemplo n.º 15
0
 public AStructDecl()
 {
     this._generic_vars_ = new TypedList(new GenericVars_Cast(this));
     this._locals_ = new TypedList(new Locals_Cast(this));
 }
Ejemplo n.º 16
0
 public AUsingDecl()
 {
     this._namespace_ = new TypedList(new Namespace_Cast(this));
 }
Ejemplo n.º 17
0
 public AConstructorDecl()
 {
     this._formals_ = new TypedList(new Formals_Cast(this));
     this._base_args_ = new TypedList(new BaseArgs_Cast(this));
 }
Ejemplo n.º 18
0
 public AUsingDecl(
         IList _namespace_
 )
 {
     this._namespace_ = new TypedList(new Namespace_Cast(this));
     this._namespace_.Clear();
     this._namespace_.AddAll(_namespace_);
 }
Ejemplo n.º 19
0
 public ADeconstructorDecl(
         PVisibilityModifier _visibility_modifier_,
         TIdentifier _name_,
         IList _formals_,
         PBlock _block_
 )
 {
     SetVisibilityModifier(_visibility_modifier_);
     SetName(_name_);
     this._formals_ = new TypedList(new Formals_Cast(this));
     this._formals_.Clear();
     this._formals_.AddAll(_formals_);
     SetBlock(_block_);
 }
Ejemplo n.º 20
0
 public AASourceFile()
 {
     this._decl_ = new TypedList(new Decl_Cast(this));
     this._usings_ = new TypedList(new Usings_Cast(this));
 }
Ejemplo n.º 21
0
 public ADelegateInvokeExp(
         TIdentifier _token_,
         PExp _receiver_,
         IList _args_
 )
 {
     SetToken(_token_);
     SetReceiver(_receiver_);
     this._args_ = new TypedList(new Args_Cast(this));
     this._args_.Clear();
     this._args_.AddAll(_args_);
 }
Ejemplo n.º 22
0
 public AASourceFile(
         IList _decl_,
         TIdentifier _name_,
         IList _usings_
 )
 {
     this._decl_ = new TypedList(new Decl_Cast(this));
     this._decl_.Clear();
     this._decl_.AddAll(_decl_);
     SetName(_name_);
     this._usings_ = new TypedList(new Usings_Cast(this));
     this._usings_.Clear();
     this._usings_.AddAll(_usings_);
 }
Ejemplo n.º 23
0
 public AEnrichmentDecl(
         TEnrichment _token_,
         PExp _dimention_,
         TIntegerLiteral _int_dim_,
         TRBrace _end_token_,
         PType _type_,
         IList _decl_
 )
 {
     SetToken(_token_);
     SetDimention(_dimention_);
     SetIntDim(_int_dim_);
     SetEndToken(_end_token_);
     SetType(_type_);
     this._decl_ = new TypedList(new Decl_Cast(this));
     this._decl_.Clear();
     this._decl_.AddAll(_decl_);
 }
Ejemplo n.º 24
0
 public AABlock()
 {
     this._statements_ = new TypedList(new Statements_Cast(this));
 }
Ejemplo n.º 25
0
 public AEnumDecl(
         PVisibilityModifier _visibility_modifier_,
         TStatic _static_,
         TEnum _token_,
         TIdentifier _name_,
         IList _values_,
         TRBrace _end_token_
 )
 {
     SetVisibilityModifier(_visibility_modifier_);
     SetStatic(_static_);
     SetToken(_token_);
     SetName(_name_);
     this._values_ = new TypedList(new Values_Cast(this));
     this._values_.Clear();
     this._values_.AddAll(_values_);
     SetEndToken(_end_token_);
 }
Ejemplo n.º 26
0
 public AAsyncInvokeStm()
 {
     this._args_ = new TypedList(new Args_Cast(this));
 }
Ejemplo n.º 27
0
 public AGenericType(
         TLt _token_,
         PType _base_,
         IList _generic_types_
 )
 {
     SetToken(_token_);
     SetBase(_base_);
     this._generic_types_ = new TypedList(new GenericTypes_Cast(this));
     this._generic_types_.Clear();
     this._generic_types_.AddAll(_generic_types_);
 }
Ejemplo n.º 28
0
 public AAsyncInvokeStm(
         TAsyncInvoke _token_,
         PLvalue _name_,
         IList _args_
 )
 {
     SetToken(_token_);
     SetName(_name_);
     this._args_ = new TypedList(new Args_Cast(this));
     this._args_.Clear();
     this._args_.AddAll(_args_);
 }
Ejemplo n.º 29
0
 public AInitializerDecl(
         TInitializer _token_,
         IList _initializer_param_,
         PBlock _body_
 )
 {
     SetToken(_token_);
     this._initializer_param_ = new TypedList(new InitializerParam_Cast(this));
     this._initializer_param_.Clear();
     this._initializer_param_.AddAll(_initializer_param_);
     SetBody(_body_);
 }
Ejemplo n.º 30
0
 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_);
 }