Beispiel #1
0
 internal UserCnstSymb(Namespace space, AST <Id> def, UserCnstSymbKind kind, bool isAutogen)
     : base(space, def.Node.Fragments[0], isAutogen)
 {
     UserCnstKind = kind;
     definitions.Add(def);
 }
Beispiel #2
0
 /// <summary>
 /// Makes a constant for internal use only. Only a limited set of operations should be
 /// performed on this constant.
 /// </summary>
 internal UserCnstSymb(Namespace space, string name, UserCnstSymbKind kind)
     : base(space, name, true)
 {
     UserCnstKind = kind;
 }