Skip to content
This repository was archived by the owner on Sep 1, 2020. It is now read-only.

Commit aa674b9

Browse files
author
Pere Villega
committed
Add links to official docs on trees and symbols
1 parent 5294b07 commit aa674b9

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

src/main/tut/docs/symbols.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ layout: docs
33
title: Symbols
44
---
55

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).
97

108
Want to contribute? [Edit this file](https://github.com/typelevel/scala/edit/typelevel-readme/src/main/resources/microsite/docs/symbols.md)

src/main/tut/docs/trees.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@ title: Trees
66
This page describes the Scala [AST]() and its implementation within the Scala compiler code.
77

88
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)
1010

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)/
1612

1713
Want to contribute? [Edit this file](https://github.com/typelevel/scala/edit/typelevel-readme/src/main/resources/microsite/docs/trees.md)

0 commit comments

Comments
 (0)