Skip to content

Commit 0322832

Browse files
committed
renumbered due to bug shuffling
1 parent 876fce2 commit 0322832

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/libsyntax/ast_util.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ pub fn new_mark(m:Mrk, tail:SyntaxContext) -> SyntaxContext {
740740
}
741741

742742
// Extend a syntax context with a given mark and table
743-
// FIXME #4536 : currently pub to allow testing
743+
// FIXME #8215 : currently pub to allow testing
744744
pub fn new_mark_internal(m:Mrk, tail:SyntaxContext,table:&mut SCTable)
745745
-> SyntaxContext {
746746
let key = (tail,m);
@@ -769,7 +769,7 @@ pub fn new_rename(id:Ident, to:Name, tail:SyntaxContext) -> SyntaxContext {
769769
}
770770
771771
// Extend a syntax context with a given rename and sctable
772-
// FIXME #4536 : currently pub to allow testing
772+
// FIXME #8215 : currently pub to allow testing
773773
pub fn new_rename_internal(id:Ident, to:Name, tail:SyntaxContext, table: &mut SCTable)
774774
-> SyntaxContext {
775775
let key = (tail,id,to);
@@ -792,7 +792,7 @@ pub fn new_rename_internal(id:Ident, to:Name, tail:SyntaxContext, table: &mut SC
792792
793793
/// Make a fresh syntax context table with EmptyCtxt in slot zero
794794
/// and IllegalCtxt in slot one.
795-
// FIXME #4536 : currently pub to allow testing
795+
// FIXME #8215 : currently pub to allow testing
796796
pub fn new_sctable_internal() -> SCTable {
797797
SCTable {
798798
table: ~[EmptyCtxt,IllegalCtxt],
@@ -834,7 +834,7 @@ pub fn mtwt_resolve(id : Ident) -> Name {
834834
resolve_internal(id, get_sctable(), get_resolve_table())
835835
}
836836
837-
// FIXME #4536: must be pub for testing
837+
// FIXME #8215: must be pub for testing
838838
pub type ResolveTable = HashMap<(Name,SyntaxContext),Name>;
839839
840840
// okay, I admit, putting this in TLS is not so nice:
@@ -853,7 +853,7 @@ pub fn get_resolve_table() -> @mut ResolveTable {
853853
854854
// Resolve a syntax object to a name, per MTWT.
855855
// adding memoization to possibly resolve 500+ seconds in resolve for librustc (!)
856-
// FIXME #4536 : currently pub to allow testing
856+
// FIXME #8215 : currently pub to allow testing
857857
pub fn resolve_internal(id : Ident,
858858
table : &mut SCTable,
859859
resolve_table : &mut ResolveTable) -> Name {

0 commit comments

Comments
 (0)