We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8904258 commit ead79b7Copy full SHA for ead79b7
clarity/src/vm/ast/mod.rs
@@ -62,13 +62,17 @@ fn parse_in_epoch(
62
epoch_id: StacksEpochId,
63
) -> ParseResult<Vec<PreSymbolicExpression>> {
64
#[cfg(feature = "devtools")]
65
- return parse_v2(source_code);
+ {
66
+ parse_v2(source_code)
67
+ }
68
69
#[cfg(not(feature = "devtools"))]
- if epoch_id >= StacksEpochId::Epoch21 {
- parse_v2(source_code)
70
- } else {
71
- parse_v1(source_code)
+ if epoch_id >= StacksEpochId::Epoch21 {
72
73
+ } else {
74
+ parse_v1(source_code)
75
76
}
77
78
0 commit comments