@@ -740,7 +740,7 @@ pub fn new_mark(m:Mrk, tail:SyntaxContext) -> SyntaxContext {
740
740
}
741
741
742
742
// 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
744
744
pub fn new_mark_internal( m : Mrk , tail : SyntaxContext , table : & mut SCTable )
745
745
-> SyntaxContext {
746
746
let key = ( tail, m) ;
@@ -769,7 +769,7 @@ pub fn new_rename(id:Ident, to:Name, tail:SyntaxContext) -> SyntaxContext {
769
769
}
770
770
771
771
// 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
773
773
pub fn new_rename_internal(id:Ident, to:Name, tail:SyntaxContext, table: &mut SCTable)
774
774
-> SyntaxContext {
775
775
let key = (tail,id,to);
@@ -792,7 +792,7 @@ pub fn new_rename_internal(id:Ident, to:Name, tail:SyntaxContext, table: &mut SC
792
792
793
793
/// Make a fresh syntax context table with EmptyCtxt in slot zero
794
794
/// and IllegalCtxt in slot one.
795
- // FIXME #4536 : currently pub to allow testing
795
+ // FIXME #8215 : currently pub to allow testing
796
796
pub fn new_sctable_internal() -> SCTable {
797
797
SCTable {
798
798
table: ~[EmptyCtxt,IllegalCtxt],
@@ -834,7 +834,7 @@ pub fn mtwt_resolve(id : Ident) -> Name {
834
834
resolve_internal(id, get_sctable(), get_resolve_table())
835
835
}
836
836
837
- // FIXME #4536 : must be pub for testing
837
+ // FIXME #8215 : must be pub for testing
838
838
pub type ResolveTable = HashMap<(Name,SyntaxContext),Name>;
839
839
840
840
// okay, I admit, putting this in TLS is not so nice:
@@ -853,7 +853,7 @@ pub fn get_resolve_table() -> @mut ResolveTable {
853
853
854
854
// Resolve a syntax object to a name, per MTWT.
855
855
// 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
857
857
pub fn resolve_internal(id : Ident,
858
858
table : &mut SCTable,
859
859
resolve_table : &mut ResolveTable) -> Name {
0 commit comments