示例#1
0
 public static Type_STRING Singleton()
 {
     if (singleton == null)
     {
         singleton = new Type_STRING();
     }
     return(singleton);
 }
示例#2
0
 public Method_TypeName() : base("type_name", Type_STRING.Singleton(), new Attribute[] { new Attribute("self", Type_OBJECT.Singleton(), 0) })
 {
 }
示例#3
0
 public override Base_Object_Value Call(Base_Object_Value[] ObjectParam)
 {
     return(new Base_Object_Value(ObjectParam[0].Type.Name, Type_STRING.Singleton()));
 }