コード例 #1
0
 public ClassMethod(string name, UtilizedType utilizedReturnType, LexLocation declarationLocation) : base(name, utilizedReturnType, declarationLocation)
 {
 }
コード例 #2
0
 public Class(string name, UtilizedType baseClassUtilizedType, LexLocation declarationLocation) : base(name, declarationLocation)
 {
     BaseClassUtilizedType = baseClassUtilizedType;
 }
コード例 #3
0
 public ClassProperty(string name, UtilizedType utilizedType, LexLocation declarationLocation) : base(name, utilizedType, declarationLocation)
 {
 }
コード例 #4
0
 protected ClassMember(string name, UtilizedType utilizedType, LexLocation declarationLocation) : base(name, utilizedType, declarationLocation)
 {
 }
コード例 #5
0
 public MethodArgument(string name, UtilizedType utilizedType, LexLocation declarationLocation) : base(name, utilizedType, declarationLocation)
 {
 }
コード例 #6
0
 public Local(string name, int position, UtilizedType utilizedType, LexLocation declarationLocation) : base(name, utilizedType, declarationLocation)
 {
     Position = position;
 }
コード例 #7
0
 protected Symbol(string name, UtilizedType utilizedType, LexLocation declarationLocation) : base(name, declarationLocation)
 {
     UtilizedType = utilizedType;
 }