public TypeAnnotatedName(Identifier name, TypeSpecifier typeAnnotation) : base(name, typeAnnotation)
 {
     Name           = name;
     TypeAnnotation = typeAnnotation;
 }
Example #2
0
 public CastExpression(TypeSpecifier targetType, Expression castee, FileLocation location) : base(location)
 {
     TargetType = targetType;
     Castee     = castee;
 }