You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many objects in the dotc compiler implement a `Showable` trait (e.g. `Tree`,
65
65
`Symbol`, `Type`). These objects may be prettyprinted using the `.show`
66
66
method
67
+
68
+
## SBT Commands Cheat Sheet ##
69
+
The basics of working with Dotty codebase are documented [here](http://dotty.epfl.ch/docs/contributing/getting-started.html) and [here](http://dotty.epfl.ch/docs/contributing/workflow.html). Below is a cheat sheet of some frequently used commands (to be used from SBT console – `sbt`).
|`dotc ../issues/Playground.scala`| Compile the given file – path relative to the Dotty directory. Output the compiled class files to the Dotty directory itself. |
75
+
|`dotr Playground`| Run the compiled class `Playground`. Dotty directory is on classpath by default. |
76
+
|`repl`| Start REPL |
77
+
|`testOnly dotty.tools.dotc.CompilationTests -- *pos`| Run test (method) `pos` from `CompilationTests` suite. |
78
+
|`testCompilation sample`| In all test suites, run test files containing the word `sample` in their title. |
0 commit comments