Skip to content

Commit b728509

Browse files
committed
---
yaml --- r: 16383 b: refs/heads/try c: 0863ac2 h: refs/heads/master i: 16381: 52607a3 16379: 415bcb6 16375: 0e00eac 16367: 3e970a3 16351: 569df02 16319: fe1e7e0 16255: 0066a47 16127: dee9578 15871: efa7bc9 15359: ad8f93b 14335: 4cc2ad4 12287: 99c7fa5 8191: 102dac0 v: v3
1 parent d622dd9 commit b728509

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 7c0fd858db331d2505ab15bc70e6c5947378f271
5+
refs/heads/try: 0863ac25a7ce07bd775c54cf6516a2fef52a31bb
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rustc/ The self-hosted compiler
66

77
libcore/ The core library (imported and linked by default)
88
libstd/ The standard library (slightly more peripheral code)
9-
librustsyntax/ The Rust parser and pretty-printer
9+
libsyntax/ The Rust parser and pretty-printer
1010

1111
rt/ The runtime system
1212
rt/rust_*.cpp - The majority of the runtime services

branches/try/src/rustc/README.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ lib/ - bindings to LLVM
3131

3232
The files concerned purely with syntax -- that is, the AST, parser,
3333
pretty-printer, lexer, macro expander, and utilities for traversing
34-
ASTs -- are in a separate crate called "rustsyntax", whose files are
35-
in ./../librustsyntax if the parent directory of front/, middle/,
36-
back/, and so on is . .
34+
ASTs -- are in a separate crate called "syntax", whose files are in
35+
./../libsyntax if the parent directory of front/, middle/, back/, and
36+
so on is . .
3737

3838
The entry-point for the compiler is main() in driver/rustc.rs, and
3939
this file sequences the various parts together.
@@ -42,7 +42,7 @@ this file sequences the various parts together.
4242
The 3 central data structures:
4343
------------------------------
4444

45-
#1: ../librustsyntax/ast.rs defines the AST. The AST is treated as immutable
45+
#1: ../libsyntax/ast.rs defines the AST. The AST is treated as immutable
4646
after parsing, but it depends on mutable context data structures
4747
(mainly hash maps) to give it meaning.
4848

@@ -78,8 +78,8 @@ Control and information flow within the compiler:
7878
- main() in driver/rustc.rs assumes control on startup. Options are
7979
parsed, platform is detected, etc.
8080

81-
- librustsyntax/parse/parser.rs parses the input files and produces an
82-
AST that represents the input crate.
81+
- libsyntax/parse/parser.rs parses the input files and produces an AST
82+
that represents the input crate.
8383

8484
- Multiple middle-end passes (middle/resolve.rs, middle/typeck.rs)
8585
analyze the semantics of the resulting AST. Each pass generates new

branches/try/src/rustc/middle/ty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ type substs = {
343343
};
344344

345345
// NB: If you change this, you'll probably want to change the corresponding
346-
// AST structure in front/ast::rs as well.
346+
// AST structure in libsyntax/ast.rs as well.
347347
enum sty {
348348
ty_nil,
349349
ty_bot,

0 commit comments

Comments
 (0)