Ejemplo n.º 1
0
 public Entry(string variableName, StringWithPosition type, IEnumerable <RegistrationInfo> registrationInfo, IEnumerable <Attribute> attributes, bool isLocal, StringWithPosition alias)
 {
     VariableName      = variableName;
     Type              = type;
     RegistrationInfos = registrationInfo;
     Attributes        = attributes;
     IsLocal           = isLocal;
     Alias             = alias;
 }
Ejemplo n.º 2
0
 public UsingEntry(StringWithPosition path, string prefix)
 {
     Path   = path;
     Prefix = prefix;
 }
Ejemplo n.º 3
0
 public ObjectValue(StringWithPosition typeName, IEnumerable <Attribute> attributes)
 {
     TypeName   = typeName;
     Attributes = attributes;
 }