Skip to content

Commit 2445bb2

Browse files
Merge workflow.md and sbt.md
1 parent 035cc6e commit 2445bb2

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

docs/docs/contributing/tools/sbt.md

-11
This file was deleted.

docs/docs/contributing/workflow.md

+12
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,15 @@ u: dotty.tools.dotc.core.Types.Type = TypeBounds(TypeRef(ThisType(TypeRef(NoPref
6464
Many objects in the dotc compiler implement a `Showable` trait (e.g. `Tree`,
6565
`Symbol`, `Type`). These objects may be prettyprinted using the `.show`
6666
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`).
70+
71+
72+
| Command | Description |
73+
|------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
74+
| `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

Comments
 (0)