Skip to content

Commit

Permalink
change time type to real
Browse files Browse the repository at this point in the history
  • Loading branch information
lenaRB committed Dec 13, 2023
1 parent 689f801 commit 6eae0f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/crml/compiler/crmlVisitorImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,7 @@ private Value apply_binary_op(String op, Value left, Value right) {
else return new Value(ctx.number().getText(), "Integer");

if(ctx.time() != null)
return new Value("time", "Clock");
return new Value("time", "Real");

String val = ctx.getText();

Expand Down

0 comments on commit 6eae0f4

Please sign in to comment.