Update READMEs and comments to reflect "rustsyntax" -> "syntax" change

This commit is contained in:
Lindsey Kuper 2012-06-08 17:13:56 -07:00
parent 7c0fd858db
commit 0863ac25a7
3 changed files with 8 additions and 8 deletions

View File

@ -6,7 +6,7 @@ rustc/ The self-hosted compiler
libcore/ The core library (imported and linked by default)
libstd/ The standard library (slightly more peripheral code)
librustsyntax/ The Rust parser and pretty-printer
libsyntax/ The Rust parser and pretty-printer
rt/ The runtime system
rt/rust_*.cpp - The majority of the runtime services

View File

@ -31,9 +31,9 @@ lib/ - bindings to LLVM
The files concerned purely with syntax -- that is, the AST, parser,
pretty-printer, lexer, macro expander, and utilities for traversing
ASTs -- are in a separate crate called "rustsyntax", whose files are
in ./../librustsyntax if the parent directory of front/, middle/,
back/, and so on is . .
ASTs -- are in a separate crate called "syntax", whose files are in
./../libsyntax if the parent directory of front/, middle/, back/, and
so on is . .
The entry-point for the compiler is main() in driver/rustc.rs, and
this file sequences the various parts together.
@ -42,7 +42,7 @@ this file sequences the various parts together.
The 3 central data structures:
------------------------------
#1: ../librustsyntax/ast.rs defines the AST. The AST is treated as immutable
#1: ../libsyntax/ast.rs defines the AST. The AST is treated as immutable
after parsing, but it depends on mutable context data structures
(mainly hash maps) to give it meaning.
@ -78,8 +78,8 @@ Control and information flow within the compiler:
- main() in driver/rustc.rs assumes control on startup. Options are
parsed, platform is detected, etc.
- librustsyntax/parse/parser.rs parses the input files and produces an
AST that represents the input crate.
- libsyntax/parse/parser.rs parses the input files and produces an AST
that represents the input crate.
- Multiple middle-end passes (middle/resolve.rs, middle/typeck.rs)
analyze the semantics of the resulting AST. Each pass generates new

View File

@ -343,7 +343,7 @@ type substs = {
};
// NB: If you change this, you'll probably want to change the corresponding
// AST structure in front/ast::rs as well.
// AST structure in libsyntax/ast.rs as well.
enum sty {
ty_nil,
ty_bot,