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
{{ message }}
This repository was archived by the owner on Sep 1, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: src/main/tut/docs/symbols.md
+1-3
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,6 @@ layout: docs
3
3
title: Symbols
4
4
---
5
5
6
-
Symbols in scalac
7
-
8
-
WIP
6
+
The official documentation of the compiler has a great section explaining [Symbols](http://docs.scala-lang.org/overviews/reflection/symbols-trees-types.html).
9
7
10
8
Want to contribute? [Edit this file](https://github.com/typelevel/scala/edit/typelevel-readme/src/main/resources/microsite/docs/symbols.md)
Copy file name to clipboardExpand all lines: src/main/tut/docs/trees.md
+2-6
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,8 @@ title: Trees
6
6
This page describes the Scala [AST]() and its implementation within the Scala compiler code.
7
7
8
8
The AST is designed to capture the syntactic constructs of the Scala Programming Language,
9
-
as described in the [language specification](https://www.scala-lang.org/files/archive/spec/2.12/13-syntax-summary.html).
9
+
as described in the [language specification](https://www.scala-lang.org/files/archive/spec/2.12/13-syntax-summary.html). The implementation of the Tree is encoded in [this file](https://github.com/scala/scala/blob/2.13.x/src/reflect/scala/reflect/internal/Trees.scala)
10
10
11
-
The implementation of the Tree is encoded in [this file](https://github.com/scala/scala/blob/2.13.x/src/reflect/scala/reflect/internal/Trees.scala)
12
-
13
-
The AST is organised in a series of traits and self-types, which follows the following structure:
14
-
15
-
WIP
11
+
The official documentation of the compiler has a great section giving more details on [Trees](http://docs.scala-lang.org/overviews/reflection/symbols-trees-types.html)/
16
12
17
13
Want to contribute? [Edit this file](https://github.com/typelevel/scala/edit/typelevel-readme/src/main/resources/microsite/docs/trees.md)
0 commit comments