Skip to content

Commit

Permalink
Adding --no-ir-caches flag
Browse files Browse the repository at this point in the history
  • Loading branch information
JaroslavTulach committed Jan 23, 2024
1 parent 405c474 commit 7a5097f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,7 @@ type Integer
Adding 10 and 15.

10 + 15
+ : Number -> Number
+ self that = @Builtin_Method "Integer.+"
+ self that: Number -> Number = @Builtin_Method "Integer.+"

## ALIAS minus, subtract
GROUP Operators
Expand Down
4 changes: 2 additions & 2 deletions test/Benchmarks/src/Startup/Startup.enso
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type Data
self.startup [ "--run", self.hello_world.to_text ]

bench_base_tests self =
self.startup expected_output="Exiting" [ "--run", self.base_tests.to_text, "exit" ]
self.startup expected_output="Exiting" [ "--no-ir-caches", "--run", self.base_tests.to_text, "exit" ]

bench_table_tests self =
self.startup expected_output="Exiting" [ "--run", self.table_tests.to_text, "exit" ]
self.startup expected_output="Exiting" [ "--no-ir-caches", "--run", self.table_tests.to_text, "exit" ]

startup self args expected_output="Hello World" =
exe = self.enso_bin
Expand Down

0 comments on commit 7a5097f

Please sign in to comment.