[svn] r5851: nemerle/trunk/ncc/parsing/PreParser.n
malekith
svnadmin at nemerle.org
Wed Oct 26 20:15:56 CEST 2005
Log:
Use SCG.List not SC.ArrayList.
Author: malekith
Date: Wed Oct 26 20:15:55 2005
New Revision: 5851
Modified:
nemerle/trunk/ncc/parsing/PreParser.n
Modified: nemerle/trunk/ncc/parsing/PreParser.n
==============================================================================
--- nemerle/trunk/ncc/parsing/PreParser.n (original)
+++ nemerle/trunk/ncc/parsing/PreParser.n Wed Oct 26 20:15:55 2005
@@ -462,7 +462,7 @@
mutable insertLocation : Location;
mutable token_pending : Token;
mutable last_real_tok : Token;
- mutable indent_strings : System.Collections.ArrayList;
+ mutable indent_strings : System.Collections.Generic.List [string];
mutable set_namespace : bool;
mutable set_class : bool;
mutable force_brace_after_newline : bool;
@@ -473,7 +473,7 @@
indentation_syntax_active = true;
new_indent = "";
current_indent = "";
- indent_strings = System.Collections.ArrayList (20);
+ indent_strings = System.Collections.Generic.List (20);
_ = indent_strings.Add("");
}
More information about the svn
mailing list