Regression: Fix repl after builtins reshuffle (#3435)

Debug is not imported by default (let me know if it should be?)

# Important Notes
When Debug was part of Builtins.enso everything was imported. Let me know if the new setup is not as expected.
This commit is contained in:
Hubert Plociniczak 2022-05-10 10:02:39 +02:00 committed by GitHub
parent 71adb7e0a4
commit cdebced203
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -732,6 +732,7 @@ object Main {
val mainMethodName = "internal_repl_entry_point___"
val dummySourceToTriggerRepl =
s"""from Standard.Base import all
|import Standard.Base.Runtime.Debug
|
|$mainMethodName = Debug.breakpoint
|""".stripMargin