@@ -62,10 +62,11 @@ pub struct Stmt {
62
62
impl Display for Stmt {
63
63
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
64
64
let mut indent = set_indentation ( indented ( f) , 0 ) ;
65
+ write ! ( indent, "Stmt {}" , self . span) ?;
66
+ indent = set_indentation ( indent, 1 ) ;
65
67
for annotation in & self . annotations {
66
68
write ! ( indent, "\n {annotation}" ) ?;
67
69
}
68
- write ! ( indent, "Stmt {}" , self . span) ?;
69
70
write ! ( indent, "\n {}" , self . kind) ?;
70
71
Ok ( ( ) )
71
72
}
@@ -74,15 +75,19 @@ impl Display for Stmt {
74
75
#[ derive( Clone , Debug ) ]
75
76
pub struct Annotation {
76
77
pub span : Span ,
77
- pub name : Box < PathKind > ,
78
+ pub identifier : Rc < str > ,
78
79
pub value : Option < Rc < str > > ,
79
80
}
80
81
impl Display for Annotation {
81
82
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
82
83
if let Some ( value) = & self . value {
83
- write ! ( f, "Annotation {}: {}, {}" , self . span, self . name, value)
84
+ write ! (
85
+ f,
86
+ "Annotation {}: ({}, {})" ,
87
+ self . span, self . identifier, value
88
+ )
84
89
} else {
85
- write ! ( f, "Annotation {}: {} " , self . span, self . name )
90
+ write ! ( f, "Annotation {}: ({}) " , self . span, self . identifier )
86
91
}
87
92
}
88
93
}
@@ -712,7 +717,7 @@ impl Display for QuantumMeasurement {
712
717
#[ derive( Clone , Debug ) ]
713
718
pub struct ClassicalArgument {
714
719
pub span : Span ,
715
- pub r#type : ClassicalType ,
720
+ pub r#type : ScalarType ,
716
721
pub name : Identifier ,
717
722
pub access : Option < AccessControl > ,
718
723
}
@@ -738,7 +743,7 @@ impl Display for ClassicalArgument {
738
743
#[ derive( Clone , Debug ) ]
739
744
pub struct ExternArgument {
740
745
pub span : Span ,
741
- pub r#type : ClassicalType ,
746
+ pub r#type : ScalarType ,
742
747
pub access : Option < AccessControl > ,
743
748
}
744
749
@@ -757,46 +762,42 @@ impl Display for ExternArgument {
757
762
}
758
763
759
764
#[ derive( Clone , Debug ) ]
760
- pub struct ClassicalType {
765
+ pub struct ScalarType {
761
766
pub span : Span ,
762
- pub kind : ClassicalTypeKind ,
767
+ pub kind : ScalarTypeKind ,
763
768
}
764
769
765
- impl Display for ClassicalType {
770
+ impl Display for ScalarType {
766
771
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
767
772
write ! ( f, "ClassicalType {}: {}" , self . span, self . kind)
768
773
}
769
774
}
770
775
771
776
#[ derive( Clone , Debug ) ]
772
- pub enum ClassicalTypeKind {
777
+ pub enum ScalarTypeKind {
778
+ Bit ( BitType ) ,
773
779
Int ( IntType ) ,
774
780
UInt ( UIntType ) ,
775
781
Float ( FloatType ) ,
776
782
Complex ( ComplexType ) ,
777
783
Angle ( AngleType ) ,
778
- Bit ( BitType ) ,
779
784
BoolType ,
780
- Array ( ArrayType ) ,
781
- ArrayReference ( ArrayReferenceType ) ,
782
785
Duration ,
783
786
Stretch ,
784
787
}
785
788
786
- impl Display for ClassicalTypeKind {
789
+ impl Display for ScalarTypeKind {
787
790
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
788
791
match self {
789
- ClassicalTypeKind :: Int ( int) => write ! ( f, "ClassicalTypeKind {int}" ) ,
790
- ClassicalTypeKind :: UInt ( uint) => write ! ( f, "ClassicalTypeKind {uint}" ) ,
791
- ClassicalTypeKind :: Float ( float) => write ! ( f, "ClassicalTypeKind {float}" ) ,
792
- ClassicalTypeKind :: Complex ( complex) => write ! ( f, "ClassicalTypeKind {complex}" ) ,
793
- ClassicalTypeKind :: Angle ( angle) => write ! ( f, "ClassicalTypeKind {angle}" ) ,
794
- ClassicalTypeKind :: Bit ( bit) => write ! ( f, "ClassicalTypeKind {bit}" ) ,
795
- ClassicalTypeKind :: BoolType => write ! ( f, "ClassicalTypeKind BoolType" ) ,
796
- ClassicalTypeKind :: Array ( array) => write ! ( f, "ClassicalTypeKind {array}" ) ,
797
- ClassicalTypeKind :: ArrayReference ( array) => write ! ( f, "ClassicalTypeKind {array}" ) ,
798
- ClassicalTypeKind :: Duration => write ! ( f, "ClassicalTypeKind Duration" ) ,
799
- ClassicalTypeKind :: Stretch => write ! ( f, "ClassicalTypeKind Stretch" ) ,
792
+ ScalarTypeKind :: Int ( int) => write ! ( f, "{int}" ) ,
793
+ ScalarTypeKind :: UInt ( uint) => write ! ( f, "{uint}" ) ,
794
+ ScalarTypeKind :: Float ( float) => write ! ( f, "{float}" ) ,
795
+ ScalarTypeKind :: Complex ( complex) => write ! ( f, "{complex}" ) ,
796
+ ScalarTypeKind :: Angle ( angle) => write ! ( f, "{angle}" ) ,
797
+ ScalarTypeKind :: Bit ( bit) => write ! ( f, "{bit}" ) ,
798
+ ScalarTypeKind :: BoolType => write ! ( f, "BoolType" ) ,
799
+ ScalarTypeKind :: Duration => write ! ( f, "Duration" ) ,
800
+ ScalarTypeKind :: Stretch => write ! ( f, "Stretch" ) ,
800
801
}
801
802
}
802
803
}
@@ -808,8 +809,8 @@ pub enum ArrayBaseTypeKind {
808
809
Float ( FloatType ) ,
809
810
Complex ( ComplexType ) ,
810
811
Angle ( AngleType ) ,
811
- Bit ( BitType ) ,
812
812
BoolType ,
813
+ Duration ,
813
814
}
814
815
815
816
impl Display for ArrayBaseTypeKind {
@@ -820,7 +821,7 @@ impl Display for ArrayBaseTypeKind {
820
821
ArrayBaseTypeKind :: Float ( float) => write ! ( f, "ArrayBaseTypeKind {float}" ) ,
821
822
ArrayBaseTypeKind :: Complex ( complex) => write ! ( f, "ArrayBaseTypeKind {complex}" ) ,
822
823
ArrayBaseTypeKind :: Angle ( angle) => write ! ( f, "ArrayBaseTypeKind {angle}" ) ,
823
- ArrayBaseTypeKind :: Bit ( bit ) => write ! ( f, "ArrayBaseTypeKind {bit} " ) ,
824
+ ArrayBaseTypeKind :: Duration => write ! ( f, "ArrayBaseTypeKind DurationType " ) ,
824
825
ArrayBaseTypeKind :: BoolType => write ! ( f, "ArrayBaseTypeKind BoolType" ) ,
825
826
}
826
827
}
@@ -835,9 +836,9 @@ pub struct IntType {
835
836
impl Display for IntType {
836
837
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
837
838
if let Some ( size) = & self . size {
838
- write ! ( f, "IntType {} : {}" , self . span, size )
839
+ write ! ( f, "IntType[{}] : {}" , size , self . span)
839
840
} else {
840
- write ! ( f, "IntType" )
841
+ write ! ( f, "IntType {}" , self . span )
841
842
}
842
843
}
843
844
}
@@ -851,9 +852,9 @@ pub struct UIntType {
851
852
impl Display for UIntType {
852
853
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
853
854
if let Some ( size) = & self . size {
854
- write ! ( f, "UIntType {} : {}" , self . span, size )
855
+ write ! ( f, "UIntType[{}] : {}" , size , self . span)
855
856
} else {
856
- write ! ( f, "UIntType" )
857
+ write ! ( f, "UIntType {}" , self . span )
857
858
}
858
859
}
859
860
}
@@ -867,9 +868,9 @@ pub struct FloatType {
867
868
impl Display for FloatType {
868
869
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
869
870
if let Some ( size) = & self . size {
870
- write ! ( f, "FloatType {} : {}" , self . span, size )
871
+ write ! ( f, "FloatType[{}] : {}" , size , self . span)
871
872
} else {
872
- write ! ( f, "FloatType" )
873
+ write ! ( f, "FloatType {}" , self . span )
873
874
}
874
875
}
875
876
}
@@ -883,9 +884,9 @@ pub struct ComplexType {
883
884
impl Display for ComplexType {
884
885
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
885
886
if let Some ( size) = & self . base_size {
886
- write ! ( f, "ComplexType {} : {}" , self . span, size )
887
+ write ! ( f, "ComplexType[float[{}]] : {}" , size , self . span)
887
888
} else {
888
- write ! ( f, "ComplexType" )
889
+ write ! ( f, "ComplexType {}" , self . span )
889
890
}
890
891
}
891
892
}
@@ -901,7 +902,7 @@ impl Display for AngleType {
901
902
if let Some ( size) = & self . size {
902
903
write ! ( f, "AngleType {}: {}" , self . span, size)
903
904
} else {
904
- write ! ( f, "AngleType" )
905
+ write ! ( f, "AngleType {}" , self . span )
905
906
}
906
907
}
907
908
}
@@ -922,11 +923,28 @@ impl Display for BitType {
922
923
}
923
924
}
924
925
926
+ #[ derive( Clone , Debug ) ]
927
+ pub enum TypeDef {
928
+ Scalar ( ScalarType ) ,
929
+ Array ( ArrayType ) ,
930
+ ArrayReference ( ArrayReferenceType ) ,
931
+ }
932
+
933
+ impl Display for TypeDef {
934
+ fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
935
+ match self {
936
+ TypeDef :: Scalar ( scalar) => write ! ( f, "{scalar}" ) ,
937
+ TypeDef :: Array ( array) => write ! ( f, "{array}" ) ,
938
+ TypeDef :: ArrayReference ( array) => write ! ( f, "{array}" ) ,
939
+ }
940
+ }
941
+ }
942
+
925
943
#[ derive( Clone , Debug ) ]
926
944
pub struct ArrayType {
927
945
pub span : Span ,
928
946
pub base_type : ArrayBaseTypeKind ,
929
- pub dimensions : List < ExprStmt > ,
947
+ pub dimensions : List < Expr > ,
930
948
}
931
949
932
950
impl Display for ArrayType {
@@ -992,16 +1010,16 @@ impl Display for QuantumArgument {
992
1010
#[ derive( Clone , Debug ) ]
993
1011
pub struct Pragma {
994
1012
pub span : Span ,
995
- pub name : Box < PathKind > ,
1013
+ pub identifier : Rc < str > ,
996
1014
pub value : Option < Rc < str > > ,
997
1015
}
998
1016
999
1017
impl Display for Pragma {
1000
1018
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
1001
1019
if let Some ( value) = & self . value {
1002
- write ! ( f, "Pragma {}: {}, {}" , self . span, self . name , value)
1020
+ write ! ( f, "Pragma {}: ( {}, {}) " , self . span, self . identifier , value)
1003
1021
} else {
1004
- write ! ( f, "Pragma {}: {} " , self . span, self . name )
1022
+ write ! ( f, "Pragma {}: ({}) " , self . span, self . identifier )
1005
1023
}
1006
1024
}
1007
1025
}
@@ -1087,7 +1105,7 @@ pub struct ExternDecl {
1087
1105
pub span : Span ,
1088
1106
pub name : Identifier ,
1089
1107
pub arguments : List < ExternArgument > ,
1090
- pub return_type : Option < ClassicalType > ,
1108
+ pub return_type : Option < ScalarType > ,
1091
1109
}
1092
1110
1093
1111
impl Display for ExternDecl {
@@ -1245,8 +1263,8 @@ impl Display for MeasureStmt {
1245
1263
#[ derive( Clone , Debug ) ]
1246
1264
pub struct ClassicalDeclarationStmt {
1247
1265
pub span : Span ,
1248
- pub r#type : ClassicalType ,
1249
- pub identifier : Identifier ,
1266
+ pub r#type : TypeDef ,
1267
+ pub identifier : Box < Ident > ,
1250
1268
pub init_expr : Option < Box < ValueExpression > > ,
1251
1269
}
1252
1270
@@ -1287,8 +1305,8 @@ impl Display for ValueExpression {
1287
1305
pub struct IODeclaration {
1288
1306
pub span : Span ,
1289
1307
pub io_identifier : IOKeyword ,
1290
- pub r#type : ClassicalType ,
1291
- pub identifier : Identifier ,
1308
+ pub r#type : TypeDef ,
1309
+ pub identifier : Box < Ident > ,
1292
1310
}
1293
1311
1294
1312
impl Display for IODeclaration {
@@ -1303,10 +1321,10 @@ impl Display for IODeclaration {
1303
1321
1304
1322
#[ derive( Clone , Debug ) ]
1305
1323
pub struct ConstantDeclaration {
1306
- span : Span ,
1307
- r#type : ClassicalType ,
1308
- identifier : Identifier ,
1309
- init_expr : ExprStmt ,
1324
+ pub span : Span ,
1325
+ pub r#type : TypeDef ,
1326
+ pub identifier : Box < Ident > ,
1327
+ pub init_expr : Box < ExprStmt > ,
1310
1328
}
1311
1329
1312
1330
impl Display for ConstantDeclaration {
@@ -1353,7 +1371,7 @@ pub struct CalibrationDefinition {
1353
1371
name : Identifier ,
1354
1372
args : List < CalibrationArgument > ,
1355
1373
qubits : List < Identifier > ,
1356
- return_type : Option < ClassicalType > ,
1374
+ return_type : Option < ScalarType > ,
1357
1375
body : String ,
1358
1376
}
1359
1377
@@ -1395,7 +1413,7 @@ pub struct DefStmt {
1395
1413
name : Identifier ,
1396
1414
args : List < Box < Operand > > ,
1397
1415
body : List < Box < Stmt > > ,
1398
- return_type : Option < ClassicalType > ,
1416
+ return_type : Option < ScalarType > ,
1399
1417
}
1400
1418
1401
1419
impl Display for DefStmt {
@@ -1489,7 +1507,7 @@ impl Display for WhileLoop {
1489
1507
#[ derive( Clone , Debug ) ]
1490
1508
pub struct ForStmt {
1491
1509
span : Span ,
1492
- r#type : ClassicalType ,
1510
+ r#type : ScalarType ,
1493
1511
identifier : Identifier ,
1494
1512
set_declaration : Box < EnumerableSet > ,
1495
1513
block : List < Stmt > ,
@@ -1647,7 +1665,7 @@ impl Display for FunctionCall {
1647
1665
#[ derive( Clone , Debug ) ]
1648
1666
pub struct Cast {
1649
1667
pub span : Span ,
1650
- pub r#type : ClassicalType ,
1668
+ pub r#type : ScalarType ,
1651
1669
pub arg : ExprStmt ,
1652
1670
}
1653
1671
0 commit comments