Copying latest mcs to the branch.
[mono.git] / mcs / gmcs / cs-tokenizer.cs
old mode 100755 (executable)
new mode 100644 (file)
index f147ec5..8f9e3d8
@@ -32,17 +32,21 @@ namespace Mono.CSharp
        public class Tokenizer : yyParser.yyInput
        {
                SeekableStreamReader reader;
-               public SourceFile ref_name;
-               public SourceFile file_name;
-               public int ref_line = 1;
-               public int line = 1;
-               public int col = 1;
-               public int current_token;
+               SourceFile ref_name;
+               SourceFile file_name;
+               int ref_line = 1;
+               int line = 1;
+               int col = 0;
+               int previous_col;
+               int current_token;
                bool handle_get_set = false;
                bool handle_remove_add = false;
                bool handle_assembly = false;
                bool handle_constraints = false;
                bool handle_typeof = false;
+               Location current_location;
+               Location current_comment_location = Location.Null;
+               ArrayList escapedIdentifiers = new ArrayList ();
 
                //
                // XML documentation buffer. The save point is used to divide
@@ -66,6 +70,7 @@ namespace Mono.CSharp
                // after a token has been seen.
                //
                bool any_token_seen = false;
+
                static Hashtable tokenValues;
                
                private static Hashtable TokenValueName
@@ -172,16 +177,25 @@ namespace Mono.CSharp
                        set {
                                if (value == XmlCommentState.Allowed) {
                                        check_incorrect_doc_comment ();
-                                       consume_doc_comment ();
+                                       reset_doc_comment ();
                                }
                                xmlDocState = value;
                        }
                }
 
+               public bool IsEscapedIdentifier (Location loc)
+               {
+                       foreach (LocatedToken lt in escapedIdentifiers)
+                               if (lt.Location.Equals (loc))
+                                       return true;
+                       return false;
+               }
+
                //
                // Class variables
                // 
                static CharArrayHashtable[] keywords;
+               static Hashtable keywordStrings = new Hashtable ();
                static NumberStyles styles;
                static NumberFormatInfo csharp_format_info;
                
@@ -214,7 +228,7 @@ namespace Mono.CSharp
 
                static CharArrayHashtable [] identifiers = new CharArrayHashtable [max_id_size + 1];
 
-               const int max_number_size = 128;
+               const int max_number_size = 512;
                static char [] number_builder = new char [max_number_size];
                static int number_pos;
                
@@ -241,7 +255,57 @@ namespace Mono.CSharp
                        }
                }
 
+               //
+               // This is used when the tokenizer needs to save
+               // the current position as it needs to do some parsing
+               // on its own to deamiguate a token in behalf of the
+               // parser.
+               //
+               Stack position_stack = new Stack ();
+               class Position {
+                       public int position;
+                       public int ref_line;
+                       public int col;
+                       public int putback_char;
+                       public int previous_col;
+                       public int parsing_generic_less_than;
+                       
+                       public Position (Tokenizer t)
+                       {
+                               position = t.reader.Position;
+                               ref_line = t.ref_line;
+                               col = t.col;
+                               putback_char = t.putback_char;
+                               previous_col = t.previous_col;
+                               parsing_generic_less_than = t.parsing_generic_less_than;
+                       }
+               }
+               
+               public void PushPosition ()
+               {
+                       position_stack.Push (new Position (this));
+               }
+
+               public void PopPosition ()
+               {
+                       Position p = (Position) position_stack.Pop ();
+
+                       reader.Position = p.position;
+                       ref_line = p.ref_line;
+                       col = p.col;
+                       putback_char = p.putback_char;
+                       previous_col = p.previous_col;
+
+               }
+
+               // Do not reset the position, ignore it.
+               public void DiscardPosition ()
+               {
+                       position_stack.Pop ();
+               }
+               
                static void AddKeyword (string kw, int token) {
+                       keywordStrings.Add (kw, kw);
                        if (keywords [kw.Length] == null) {
                                keywords [kw.Length] = new CharArrayHashtable (kw.Length);
                        }
@@ -381,9 +445,7 @@ namespace Mono.CSharp
                }
 
                public Location Location {
-                       get {
-                               return new Location (ref_line);
-                       }
+                       get { return current_location; }
                }
 
                void define (string def)
@@ -419,10 +481,6 @@ namespace Mono.CSharp
                        Mono.CSharp.Location.Push (file);
                }
 
-               public static void Cleanup () {
-                       identifiers = null;
-               }
-
                static bool is_identifier_start_character (char c)
                {
                        return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || c == '_' || Char.IsLetter (c);
@@ -432,12 +490,17 @@ namespace Mono.CSharp
                {
                        return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '_' || (c >= '0' && c <= '9') || Char.IsLetter (c);
                }
-               
+
+               public static bool IsKeyword (string s)
+               {
+                       return keywordStrings [s] != null;
+               }
+
                public static bool IsValidIdentifier (string s)
                {
                        if (s == null || s.Length == 0)
                                return false;
-                       
+
                        if (!is_identifier_start_character (s [0]))
                                return false;
                        
@@ -468,6 +531,12 @@ namespace Mono.CSharp
                {
                start:
                        int the_token = token ();
+                       if (the_token == Token.OPEN_BRACKET) {
+                               do {
+                                       the_token = token ();
+                               } while (the_token != Token.CLOSE_BRACKET);
+                               the_token = token ();
+                       }
                        switch (the_token) {
                        case Token.IDENTIFIER:
                        case Token.OBJECT:
@@ -498,6 +567,8 @@ namespace Mono.CSharp
                                return true;
                        else if ((the_token == Token.COMMA) || (the_token == Token.DOT))
                                goto start;
+                       else if (the_token == Token.INTERR || the_token == Token.STAR)
+                               goto again;
                        else if (the_token == Token.OP_GENERICS_LT) {
                                if (!parse_less_than ())
                                        return false;
@@ -515,7 +586,6 @@ namespace Mono.CSharp
                        return false;
                }
 
-               bool parsing_less_than = false;
                int parsing_generic_less_than = 0;
 
                int is_punct (char c, ref bool doread)
@@ -527,8 +597,10 @@ namespace Mono.CSharp
 
                        switch (c){
                        case '{':
+                               val = Location;
                                return Token.OPEN_BRACE;
                        case '}':
+                               val = Location;
                                return Token.CLOSE_BRACE;
                        case '[':
                                // To block doccomment inside attribute declaration.
@@ -545,11 +617,9 @@ namespace Mono.CSharp
 
                                --deambiguate_close_parens;
 
-                               // Save current position and parse next token.
-                               int old = reader.Position;
+                               PushPosition ();
                                int new_token = token ();
-                               reader.Position = old;
-                               putback_char = -1;
+                               PopPosition ();
 
                                if (new_token == Token.OPEN_PARENS)
                                        return Token.CLOSE_PARENS_OPEN_PARENS;
@@ -563,11 +633,11 @@ namespace Mono.CSharp
 
                        case ',':
                                return Token.COMMA;
-                       case ':':
-                               return Token.COLON;
                        case ';':
+                               val = Location;
                                return Token.SEMICOLON;
                        case '~':
+                               val = Location;
                                return Token.TILDE;
                        case '?':
                                return Token.INTERR;
@@ -577,22 +647,21 @@ namespace Mono.CSharp
                                if (parsing_generic_less_than++ > 0)
                                        return Token.OP_GENERICS_LT;
 
-                               int old = reader.Position;
                                if (handle_typeof) {
                                        int dimension;
+                                       PushPosition ();
                                        if (parse_generic_dimension (out dimension)) {
                                                val = dimension;
+                                               DiscardPosition ();
                                                return Token.GENERIC_DIMENSION;
                                        }
-                                       reader.Position = old;
-                                       putback_char = -1;
+                                       PopPosition ();
                                }
 
                                // Save current position and parse next token.
-                               old = reader.Position;
+                               PushPosition ();
                                bool is_generic_lt = parse_less_than ();
-                               reader.Position = old;
-                               putback_char = -1;
+                               PopPosition ();
 
                                if (is_generic_lt) {
                                        parsing_generic_less_than++;
@@ -641,24 +710,32 @@ namespace Mono.CSharp
                        d = peekChar ();
                        if (c == '+'){
                                
-                               if (d == '+')
+                               if (d == '+') {
+                                       val = Location;
                                        t = Token.OP_INC;
+                               }
                                else if (d == '=')
                                        t = Token.OP_ADD_ASSIGN;
-                               else
+                               else {
+                                       val = Location;
                                        return Token.PLUS;
+                               }
                                doread = true;
                                return t;
                        }
                        if (c == '-'){
-                               if (d == '-')
+                               if (d == '-') {
+                                       val = Location;
                                        t = Token.OP_DEC;
+                               }
                                else if (d == '=')
                                        t = Token.OP_SUB_ASSIGN;
                                else if (d == '>')
                                        t = Token.OP_PTR;
-                               else
+                               else {
+                                       val = Location;
                                        return Token.MINUS;
+                               }
                                doread = true;
                                return t;
                        }
@@ -668,6 +745,7 @@ namespace Mono.CSharp
                                        doread = true;
                                        return Token.OP_NE;
                                }
+                               val = Location;
                                return Token.BANG;
                        }
 
@@ -687,6 +765,7 @@ namespace Mono.CSharp
                                        doread = true;
                                        return Token.OP_AND_ASSIGN;
                                }
+                               val = Location;
                                return Token.BITWISE_AND;
                        }
 
@@ -706,6 +785,7 @@ namespace Mono.CSharp
                                        doread = true;
                                        return Token.OP_MULT_ASSIGN;
                                }
+                               val = Location;
                                return Token.STAR;
                        }
 
@@ -733,6 +813,15 @@ namespace Mono.CSharp
                                return Token.CARRET;
                        }
 
+                       if (c == ':'){
+                               if (d == ':'){
+                                       doread = true;
+                                       return Token.DOUBLE_COLON;
+                               }
+                               val = Location;
+                               return Token.COLON;
+                       }
+
                        return Token.ERROR;
                }
 
@@ -744,11 +833,38 @@ namespace Mono.CSharp
                        deambiguate_close_parens++;
                }
 
+               public void PutbackNullable ()
+               {
+                       if (nullable_pos < 0)
+                               throw new Exception ();
+
+                       current_token = -1;
+                       val = null;
+                       reader.Position = nullable_pos;
+
+                       putback_char = '?';
+               }
+
+               public void PutbackCloseParens ()
+               {
+                       putback_char = ')';
+               }
+
                void Error_NumericConstantTooLong ()
                {
                        Report.Error (1021, Location, "Numeric constant too long");                     
                }
-               
+
+               int nullable_pos = -1;
+
+               public void CheckNullable (bool is_nullable)
+               {
+                       if (is_nullable)
+                               nullable_pos = reader.Position;
+                       else
+                               nullable_pos = -1;
+               }
+
                bool decimal_digits (int c)
                {
                        int d;
@@ -778,19 +894,12 @@ namespace Mono.CSharp
                        return seen_digits;
                }
 
-               bool is_hex (int e)
+               static bool is_hex (int e)
                {
                        return (e >= '0' && e <= '9') || (e >= 'A' && e <= 'F') || (e >= 'a' && e <= 'f');
                }
-               
-               void hex_digits (int c)
-               {
-                       if (c != -1)
-                               number_builder [number_pos++] = (char) c;
-                       
-               }
-               
-               int real_type_suffix (int c)
+                               
+               static int real_type_suffix (int c)
                {
                        int t;
 
@@ -832,10 +941,19 @@ namespace Mono.CSharp
                                                        // if we have not seen anything in between
                                                        // report this error
                                                        //
-                                                       Report.Warning (78, Location, "The 'l' suffix is easily confused with the digit '1' (use 'L' for clarity)");
+                                                       Report.Warning (78, 4, Location, "The 'l' suffix is easily confused with the digit '1' (use 'L' for clarity)");
                                                }
-                                               goto case 'L';
-                                               
+                                               //
+                                               // This goto statement causes the MS CLR 2.0 beta 1 csc to report an error, so
+                                               // work around that.
+                                               //
+                                               //goto case 'L';
+                                               if (is_long)
+                                                       scanning = false;
+                                               is_long = true;
+                                               getChar ();
+                                               break;
+
                                        case 'L': 
                                                if (is_long)
                                                        scanning = false;
@@ -925,6 +1043,7 @@ namespace Mono.CSharp
                int adjust_real (int t)
                {
                        string s = new String (number_builder, 0, number_pos);
+                       const string error_details = "Floating-point constant is outside the range of type `{0}'";
 
                        switch (t){
                        case Token.LITERAL_DECIMAL:
@@ -932,17 +1051,15 @@ namespace Mono.CSharp
                                        val = System.Decimal.Parse (s, styles, csharp_format_info);
                                } catch (OverflowException) {
                                        val = 0m;     
-                                       error_details = "Floating-point constant is outside the range of the type 'decimal'";
-                                       Report.Error (594, Location, error_details);
+                                       Report.Error (594, Location, error_details, "decimal");
                                }
                                break;
                        case Token.LITERAL_FLOAT:
                                try {
-                                       val = (float) System.Double.Parse (s, styles, csharp_format_info);
+                                       val = float.Parse (s, styles, csharp_format_info);
                                } catch (OverflowException) {
                                        val = 0.0f;     
-                                       error_details = "Floating-point constant is outside the range of the type 'float'";
-                                       Report.Error (594, Location, error_details);
+                                       Report.Error (594, Location, error_details, "float");
                                }
                                break;
                                
@@ -953,8 +1070,7 @@ namespace Mono.CSharp
                                        val = System.Double.Parse (s, styles, csharp_format_info);
                                } catch (OverflowException) {
                                        val = 0.0;     
-                                       error_details = "Floating-point constant is outside the range of the type 'double'";
-                                       Report.Error (594, Location, error_details);
+                                       Report.Error (594, Location, error_details, "double");
                                }
                                break;
                        }
@@ -987,6 +1103,11 @@ namespace Mono.CSharp
                                val = 0ul;
                                return Token.LITERAL_INTEGER;
                        }
+                       catch (FormatException) {
+                               Report.Error (1013, Location, "Invalid number");
+                               val = 0ul;
+                               return Token.LITERAL_INTEGER;
+                       }
                        
                        return integer_type_suffix (ul, peekChar ());
                }
@@ -1159,7 +1280,7 @@ namespace Mono.CSharp
                                        goto default;
                                return v;
                        default:
-                               Report.Error (1009, Location, "Unrecognized escape sequence in " + (char)d);
+                               Report.Error (1009, Location, "Unrecognized escape sequence `\\{0}'", ((char)d).ToString ());
                                return d;
                        }
                        getChar ();
@@ -1168,13 +1289,21 @@ namespace Mono.CSharp
 
                int getChar ()
                {
-                       if (putback_char != -1){
-                               int x = putback_char;
+                       int x;
+                       if (putback_char != -1) {
+                               x = putback_char;
                                putback_char = -1;
-
-                               return x;
+                       } else
+                               x = reader.Read ();
+                       if (x == '\n') {
+                               line++;
+                               ref_line++;
+                               previous_col = col;
+                               col = 0;
                        }
-                       return reader.Read ();
+                       else
+                               col++;
+                       return x;
                }
 
                int peekChar ()
@@ -1201,6 +1330,14 @@ namespace Mono.CSharp
                                Console.WriteLine ("Current [{0}] putting back [{1}]  ", putback_char, c);
                                throw new Exception ("This should not happen putback on putback");
                        }
+                       if (c == '\n' || col == 0) {
+                               // It won't happen though.
+                               line--;
+                               ref_line--;
+                               col = previous_col;
+                       }
+                       else
+                               col--;
                        putback_char = c;
                }
 
@@ -1220,7 +1357,7 @@ namespace Mono.CSharp
                        return val;
                }
 
-               bool IsCastToken (int token)
+               static bool IsCastToken (int token)
                {
                        switch (token) {
                        case Token.BANG:
@@ -1310,22 +1447,19 @@ namespace Mono.CSharp
                        cmd = static_cmd_arg.ToString ();
 
                        if (c == '\n'){
-                               line++;
-                               ref_line++;
                                return;
-                       } else if (c == '\r')
-                               col = 0;
+                       }
 
                        // skip over white space
                        while ((c = getChar ()) != -1 && (c != '\n') && ((c == '\r') || (c == ' ') || (c == '\t')))
                                ;
 
                        if (c == '\n'){
-                               line++;
-                               ref_line++;
                                return;
                        } else if (c == '\r'){
-                               col = 0;
+                               return;
+                       } else if (c == -1){
+                               arg = "";
                                return;
                        }
                        
@@ -1336,11 +1470,6 @@ namespace Mono.CSharp
                                static_cmd_arg.Append ((char) c);
                        }
 
-                       if (c == '\n'){
-                               line++;
-                               ref_line++;
-                       } else if (c == '\r')
-                               col = 0;
                        arg = static_cmd_arg.ToString ().Trim ();
                }
 
@@ -1349,7 +1478,7 @@ namespace Mono.CSharp
                //
                bool PreProcessLine (string arg)
                {
-                       if (arg == "")
+                       if (arg.Length == 0)
                                return false;
 
                        if (arg == "default"){
@@ -1393,7 +1522,7 @@ namespace Mono.CSharp
                //
                void PreProcessDefinition (bool is_define, string arg)
                {
-                       if (arg == "" || arg == "true" || arg == "false"){
+                       if (arg.Length == 0 || arg == "true" || arg == "false"){
                                Report.Error (1001, Location, "Missing identifer to pre-processor directive");
                                return;
                        }
@@ -1431,21 +1560,22 @@ namespace Mono.CSharp
                /// </summary>
                void PreProcessPragma (string arg)
                {
-                       const string disable = "warning disable";
-                       const string restore = "warning restore";
+                       const string warning = "warning";
+                       const string w_disable = "warning disable";
+                       const string w_restore = "warning restore";
 
-                       if (arg == disable) {
+                       if (arg == w_disable) {
                                Report.RegisterWarningRegion (Location).WarningDisable (line);
                                return;
                        }
 
-                       if (arg == restore) {
+                       if (arg == w_restore) {
                                Report.RegisterWarningRegion (Location).WarningEnable (line);
                                return;
                        }
 
-                       if (arg.StartsWith (disable)) {
-                               int[] codes = ParseNumbers (arg.Substring (disable.Length));
+                       if (arg.StartsWith (w_disable)) {
+                               int[] codes = ParseNumbers (arg.Substring (w_disable.Length));
                                foreach (int code in codes) {
                                        if (code != 0)
                                                Report.RegisterWarningRegion (Location).WarningDisable (Location, code);
@@ -1453,15 +1583,23 @@ namespace Mono.CSharp
                                return;
                        }
 
-                       if (arg.StartsWith (restore)) {
-                               int[] codes = ParseNumbers (arg.Substring (restore.Length));
+                       if (arg.StartsWith (w_restore)) {
+                               int[] codes = ParseNumbers (arg.Substring (w_restore.Length));
+                               Hashtable w_table = Report.warning_ignore_table;
                                foreach (int code in codes) {
+                                       if (w_table != null && w_table.Contains (code))
+                                               Report.Warning (1635, 1, Location, String.Format ("Cannot restore warning `CS{0:0000}' because it was disabled globally", code));
                                        Report.RegisterWarningRegion (Location).WarningEnable (Location, code);
                                }
                                return;
                        }
 
-                       return;
+                       if (arg.StartsWith (warning)) {
+                               Report.Warning (1634, 1, Location, "Expected disable or restore");
+                               return;
+                       }
+
+                       Report.Warning (1633, 1, Location, "Unrecognized #pragma directive");
                }
 
                int[] ParseNumbers (string text)
@@ -1474,7 +1612,7 @@ namespace Mono.CSharp
                                        values[index++] = int.Parse (string_code, System.Globalization.CultureInfo.InvariantCulture);
                                }
                                catch (FormatException) {
-                                       Report.Warning (1692, Location, "Invalid number");
+                                       Report.Warning (1692, 1, Location, "Invalid number");
                                }
                        }
                        return values;
@@ -1595,7 +1733,7 @@ namespace Mono.CSharp
                                if (s [0] == '&'){
                                        if (len > 2 && s [1] == '&'){
                                                s = s.Substring (2);
-                                               return (va & pp_eq (ref s));
+                                               return (va & pp_and (ref s));
                                        } else {
                                                Error_InvalidDirective ();
                                                return false;
@@ -1644,7 +1782,7 @@ namespace Mono.CSharp
                
                void Error_InvalidDirective ()
                {
-                       Report.Error (1517, Location, "Invalid pre-processor directive");
+                       Report.Error (1517, Location, "Invalid preprocessor directive");
                }
 
                void Error_UnexpectedDirective (string extra)
@@ -1656,9 +1794,8 @@ namespace Mono.CSharp
 
                void Error_TokensSeen ()
                {
-                       Report.Error (
-                               1032, Location,
-                               "Cannot define or undefine pre-processor symbols after a token in the file");
+                       Report.Error (1032, Location,
+                               "Cannot define or undefine preprocessor symbols after first token in file");
                }
                
                //
@@ -1671,6 +1808,8 @@ namespace Mono.CSharp
                        string cmd, arg;
                        bool region_directive = false;
 
+                       current_location = new Location (ref_line, Col);
+
                        get_cmd_arg (out cmd, out arg);
 
                        // Eat any trailing whitespaces and single-line comments
@@ -1695,7 +1834,7 @@ namespace Mono.CSharp
                                if (!PreProcessLine (arg))
                                        Report.Error (
                                                1576, Location,
-                                               "Argument to #line directive is missing or invalid");
+                                               "The line number specified for #line directive is missing or invalid");
                                return caller_is_taking;
 
                        case "region":
@@ -1708,13 +1847,13 @@ namespace Mono.CSharp
                                goto case "endif";
                                
                        case "if":
-                               if (arg == ""){
+                               if (arg.Length == 0){
                                        Error_InvalidDirective ();
                                        return true;
                                }
                                bool taking = false;
                                if (ifstack == null)
-                                       ifstack = new Stack ();
+                                       ifstack = new Stack (2);
 
                                if (ifstack.Count == 0){
                                        taking = true;
@@ -1746,10 +1885,14 @@ namespace Mono.CSharp
                                        int pop = (int) ifstack.Pop ();
                                        
                                        if (region_directive && ((pop & REGION) == 0))
-                                               Report.Error (1027, Location, "#endif directive expected");
+                                               Report.Error (1027, Location, "Expected `#endif' directive");
                                        else if (!region_directive && ((pop & REGION) != 0))
                                                Report.Error (1038, Location, "#endregion directive expected");
                                        
+                                       if (!region_directive && arg.Length != 0) {
+                                               Report.Error (1025, Location, "Single-line comment or end-of-line expected");
+                                       }
+                                       
                                        if (ifstack.Count == 0)
                                                return true;
                                        else {
@@ -1792,9 +1935,7 @@ namespace Mono.CSharp
 
                        case "else":
                                if (ifstack == null || ifstack.Count == 0){
-                                       Report.Error (
-                                               1028, Location,
-                                               "Unexpected processor directive (no #if for this #else)");
+                                       Error_UnexpectedDirective ("no #if for this #else");
                                        return true;
                                } else {
                                        int state = (int) ifstack.Peek ();
@@ -1856,11 +1997,11 @@ namespace Mono.CSharp
                                return true;
 
                        case "warning":
-                               Report.Warning (1030, Location, "#warning: '{0}'", arg);
+                               Report.Warning (1030, 1, Location, "#warning: `{0}'", arg);
                                return true;
                        }
 
-                       Report.Error (1024, Location, "Preprocessor directive expected (got: " + cmd + ")");
+                       Report.Error (1024, Location, "Wrong preprocessor directive");
                        return true;
 
                }
@@ -1885,11 +2026,7 @@ namespace Mono.CSharp
                                if (c == '\n'){
                                        if (!quoted)
                                                Report.Error (1010, Location, "Newline in constant");
-                                       line++;
-                                       ref_line++;
-                                       col = 0;
-                               } else
-                                       col++;
+                               }
 
                                if (!quoted){
                                        c = escape (c);
@@ -1918,23 +2055,20 @@ namespace Mono.CSharp
 
                        if (res == Token.PARTIAL) {
                                // Save current position and parse next token.
-                               int old = reader.Position;
-                               int old_putback = putback_char;
-
-                               putback_char = -1;
+                               PushPosition ();
 
                                int next_token = token ();
                                bool ok = (next_token == Token.CLASS) ||
                                        (next_token == Token.STRUCT) ||
-                                       (next_token == Token.INTERFACE);
+                                       (next_token == Token.INTERFACE) ||
+                                       (next_token == Token.ENUM); // "partial" is a keyword in 'partial enum', even though it's not valid
 
-                               reader.Position = old;
-                               putback_char = old_putback;
+                               PopPosition ();
 
                                if (ok)
                                        return res;
                                else {
-                                       val = "partial";
+                                       val = new LocatedToken (Location, "partial");
                                        return Token.IDENTIFIER;
                                }
                        }
@@ -1945,11 +2079,14 @@ namespace Mono.CSharp
                private int consume_identifier (int s, bool quoted) 
                {
                        int pos = 1;
-                       int c;
+                       int c = -1;
                        
                        id_builder [0] = (char) s;
                                        
-                       while ((c = reader.Read ()) != -1) {
+                       current_location = new Location (ref_line, Col);
+
+                       while ((c = getChar ()) != -1) {
+                       loop:
                                if (is_identifier_part_character ((char) c)){
                                        if (pos == max_id_size){
                                                Report.Error (645, Location, "Identifier too long (limit is 512 chars)");
@@ -1957,10 +2094,13 @@ namespace Mono.CSharp
                                        }
                                        
                                        id_builder [pos++] = (char) c;
-                                       putback_char = -1;
-                                       col++;
+//                                     putback_char = -1;
+                               } else if (c == '\\') {
+                                       c = escape (c);
+                                       goto loop;
                                } else {
-                                       putback_char = c;
+//                                     putback_char = c;
+                                       putback (c);
                                        break;
                                }
                        }
@@ -1971,8 +2111,10 @@ namespace Mono.CSharp
                        //
                        if (!quoted && (s >= 'a' || s == '_')){
                                int keyword = GetKeyword (id_builder, pos);
-                               if (keyword != -1)
+                               if (keyword != -1) {
+                                       val = Location;
                                return keyword;
+                               }
                        }
 
                        //
@@ -1983,6 +2125,9 @@ namespace Mono.CSharp
                        if (identifiers [pos] != null) {
                                val = identifiers [pos][id_builder];
                                if (val != null) {
+                                       val = new LocatedToken (Location, (string) val);
+                                       if (quoted)
+                                               escapedIdentifiers.Add (val);
                                        return Token.IDENTIFIER;
                                }
                        }
@@ -1990,29 +2135,41 @@ namespace Mono.CSharp
                                identifiers [pos] = new CharArrayHashtable (pos);
 
                        val = new String (id_builder, 0, pos);
+                       if (RootContext.Version == LanguageVersion.ISO_1) {
+                               for (int i = 1; i < id_builder.Length; i += 3) {
+                                       if (id_builder [i] == '_' && (id_builder [i - 1] == '_' || id_builder [i + 1] == '_')) {
+                                               Report.Error (1638, Location, 
+                                                       "`{0}': Any identifier with double underscores cannot be used when ISO language version mode is specified", val.ToString ());
+                                               break;
+                                       }
+                               }
+                       }
 
                        char [] chars = new char [pos];
                        Array.Copy (id_builder, chars, pos);
 
                        identifiers [pos] [chars] = val;
 
+                       val = new LocatedToken (Location, (string) val);
+                       if (quoted)
+                               escapedIdentifiers.Add (val);
                        return Token.IDENTIFIER;
                }
 
                int consume_whitespace ()
                {
-                       int t;
-                       bool doread = false;
                        int c;
 
+                       // Whether we have seen comments on the current line
+                       bool comments_seen = false;
+                       
                        val = null;
                        // optimization: eliminate col and implement #directive semantic correctly.
-                       for (;(c = getChar ()) != -1; col++) {
+                       for (;(c = getChar ()) != -1;) {
                                if (c == ' ')
                                        continue;
                                
                                if (c == '\t') {
-                                       col = (((col + 8) / 8) * 8) - 1;
                                        continue;
                                }
                                
@@ -2023,11 +2180,9 @@ namespace Mono.CSharp
                                        if (peekChar () == '\n')
                                                getChar ();
 
-                                       line++;
-                                       ref_line++;
-                                       col = 0;
                                        any_token_seen |= tokens_seen;
                                        tokens_seen = false;
+                                       comments_seen = false;
                                        continue;
                                }
 
@@ -2039,9 +2194,9 @@ namespace Mono.CSharp
                                                getChar ();
                                                if (RootContext.Documentation != null && peekChar () == '/') {
                                                        getChar ();
-                                                       // Allow only ///ws.
                                                        // Don't allow ////.
-                                                       if ((d = peekChar ()) == ' ' || d == '\t') {
+                                                       if ((d = peekChar ()) != '/') {
+                                                               update_comment_location ();
                                                                if (doc_state == XmlCommentState.Allowed)
                                                                        handle_one_line_xml_comment ();
                                                                else if (doc_state == XmlCommentState.NotAllowed)
@@ -2049,20 +2204,18 @@ namespace Mono.CSharp
                                                        }
                                                }
                                                while ((d = getChar ()) != -1 && (d != '\n') && d != '\r')
-                                                       col++;
                                                if (d == '\n'){
-                                                       line++;
-                                                       ref_line++;
-                                                       col = 0;
                                                }
                                                any_token_seen |= tokens_seen;
                                                tokens_seen = false;
+                                               comments_seen = false;
                                                continue;
                                        } else if (d == '*'){
                                                getChar ();
                                                bool docAppend = false;
                                                if (RootContext.Documentation != null && peekChar () == '*') {
                                                        getChar ();
+                                                       update_comment_location ();
                                                        // But when it is /**/, just do nothing.
                                                        if (peekChar () == '/') {
                                                                getChar ();
@@ -2074,31 +2227,38 @@ namespace Mono.CSharp
                                                                warn_incorrect_doc_comment ();
                                                }
 
-                                               int currentCommentStart = 0;
+                                               int current_comment_start = 0;
                                                if (docAppend) {
-                                                       currentCommentStart = xml_comment_buffer.Length;
+                                                       current_comment_start = xml_comment_buffer.Length;
                                                        xml_comment_buffer.Append (Environment.NewLine);
                                                }
 
+                                               Location start_location = Location;
+
                                                while ((d = getChar ()) != -1){
                                                        if (d == '*' && peekChar () == '/'){
                                                                getChar ();
-                                                               col++;
+                                                               comments_seen = true;
                                                                break;
                                                        }
                                                        if (docAppend)
                                                                xml_comment_buffer.Append ((char) d);
                                                        
                                                        if (d == '\n'){
-                                                               line++;
-                                                               ref_line++;
-                                                               col = 0;
                                                                any_token_seen |= tokens_seen;
                                                                tokens_seen = false;
+                                                               // 
+                                                               // Reset 'comments_seen' just to be consistent.
+                                                               // It doesn't matter either way, here.
+                                                               //
+                                                               comments_seen = false;
                                                        }
                                                }
+                                               if (!comments_seen)
+                                                       Report.Error (1035, start_location, "End-of-file found, '*/' expected");
+
                                                if (docAppend)
-                                                       update_formatted_doc_comment (currentCommentStart);
+                                                       update_formatted_doc_comment (current_comment_start);
                                                continue;
                                        }
                                        goto is_punct_label;
@@ -2107,36 +2267,38 @@ namespace Mono.CSharp
                        is_punct_label:
                                // white space
                                if (c == '\n'){
-                                       line++;
-                                       ref_line++;
-                                       col = 0;
                                        any_token_seen |= tokens_seen;
                                        tokens_seen = false;
+                                       comments_seen = false;
                                        continue;
                                }
 
                                /* For now, ignore pre-processor commands */
                                // FIXME: In C# the '#' is not limited to appear
                                // on the first column.
-                               if (c == '#' && !tokens_seen){
+                               if (c == '#'{
                                        bool cont = true;
                                        
+                                       if (tokens_seen || comments_seen) {
+                                               error_details = "Preprocessor directives must appear as the first non-whitespace " +
+                                                       "character on a line.";
+
+                                               Report.Error (1040, Location, error_details);
+
+                                               return Token.ERROR;
+                                       }
+                                       
                                start_again:
                                        
                                        cont = handle_preprocessing_directive (cont);
 
                                        if (cont){
-                                               col = 0;
                                                continue;
                                        }
-                                       col = 1;
 
                                        bool skipping = false;
-                                       for (;(c = getChar ()) != -1; col++){
+                                       for (;(c = getChar ()) != -1;){
                                                if (c == '\n'){
-                                                       col = 0;
-                                                       line++;
-                                                       ref_line++;
                                                        skipping = false;
                                                } else if (c == ' ' || c == '\t' || c == '\v' || c == '\r' || c == 0xa0)
                                                        continue;
@@ -2148,7 +2310,7 @@ namespace Mono.CSharp
                                        any_token_seen |= tokens_seen;
                                        tokens_seen = false;
                                        if (c == -1)
-                                               Report.Error (1027, Location, "#endif/#endregion expected");
+                                               Report.Error (1027, Location, "Expected `#endif' directive");
                                        continue;
                                }
 
@@ -2171,12 +2333,12 @@ namespace Mono.CSharp
                        if (c == -1)
                                return Token.EOF;
 
-                       if (is_identifier_start_character ((char)c)){
+                       if (c == '\\' || is_identifier_start_character ((char)c)){
                                tokens_seen = true;
-                                       return consume_identifier (c);
+                               return consume_identifier (c);
                        }
 
-               is_punct_label:
+                       current_location = new Location (ref_line, Col);
                        if ((t = is_punct ((char)c, ref doread)) != Token.ERROR){
                                tokens_seen = true;
                                if (doread){
@@ -2210,6 +2372,10 @@ namespace Mono.CSharp
                                        Report.Error (1011, Location, error_details);
                                        return Token.ERROR;
                                }
+                               if (c == '\r' || c == '\n') {
+                                       Report.Error (1010, Location, "Newline in constant");
+                                       return Token.ERROR;
+                               }
                                c = escape (c);
                                if (c == -1)
                                        return Token.ERROR;
@@ -2223,13 +2389,11 @@ namespace Mono.CSharp
 
                                        // Try to recover, read until newline or next "'"
                                        while ((c = getChar ()) != -1){
-                                               if (c == '\n' || c == '\''){
-                                                       line++;
-                                                       ref_line++;
-                                                       col = 0;
+                                               if (c == '\n'){
+                                                       break;
+                                               }
+                                               else if (c == '\'')
                                                        break;
-                                               } else
-                                                       col++;
                                        }
                                        return Token.ERROR;
                                }
@@ -2244,7 +2408,7 @@ namespace Mono.CSharp
                                } else if (is_identifier_start_character ((char) c)){
                                        return consume_identifier (c, true);
                                } else {
-                                       Report.Error (1033, Location, "'@' must be followed by string constant or identifier");
+                                       Report.Error (1646, Location, "Keyword, identifier, or string expected after verbatim specifier: @");
                                }
                        }
 
@@ -2271,7 +2435,6 @@ namespace Mono.CSharp
                        while ((c = peekChar ()) == ' ')
                                getChar (); // skip heading whitespaces.
                        while ((c = peekChar ()) != -1 && c != '\n' && c != '\r') {
-                               col++;
                                xml_comment_buffer.Append ((char) getChar ());
                        }
                        if (c == '\r' || c == '\n')
@@ -2281,12 +2444,13 @@ namespace Mono.CSharp
                //
                // Remove heading "*" in Javadoc-like xml documentation.
                //
-               private void update_formatted_doc_comment (int currentCommentStart)
+               private void update_formatted_doc_comment (int current_comment_start)
                {
-                       int length = xml_comment_buffer.Length - currentCommentStart;
+                       int length = xml_comment_buffer.Length - current_comment_start;
                        string [] lines = xml_comment_buffer.ToString (
-                               currentCommentStart,
+                               current_comment_start,
                                length).Replace ("\r", "").Split ('\n');
+                       
                        // The first line starts with /**, thus it is not target
                        // for the format check.
                        for (int i = 1; i < lines.Length; i++) {
@@ -2297,18 +2461,27 @@ namespace Mono.CSharp
                                        if (i < lines.Length - 1)
                                                return;
                                        head = s;
-                               }
-                               else
+                               } else
                                        head = s.Substring (0, idx);
                                foreach (char c in head)
                                        if (c != ' ')
                                                return;
                                lines [i] = s.Substring (idx + 1);
                        }
-                       xml_comment_buffer.Remove (currentCommentStart, length);
-                       xml_comment_buffer.Insert (
-                               currentCommentStart,
-                               String.Join (Environment.NewLine, lines));
+                       xml_comment_buffer.Remove (current_comment_start, length);
+                       xml_comment_buffer.Insert (current_comment_start, String.Join (Environment.NewLine, lines));
+               }
+
+               //
+               // Updates current comment location.
+               //
+               private void update_comment_location ()
+               {
+                       if (current_comment_location.IsNull) {
+                               // "-2" is for heading "//" or "/*"
+                               current_comment_location =
+                                       new Location (ref_line, col - 2);
+                       }
                }
 
                //
@@ -2327,10 +2500,13 @@ namespace Mono.CSharp
                //
                private void warn_incorrect_doc_comment ()
                {
-                       doc_state = XmlCommentState.Error;
-                       // in csc, it is 'XML comment is not placed on a valid 
-                       // language element'. But that does not make sense.
-                       Report.Warning (1587, 2, Location, "XML comment is placed on an invalid language element which can not accept it.");
+                       if (doc_state != XmlCommentState.Error) {
+                               doc_state = XmlCommentState.Error;
+                               // in csc, it is 'XML comment is not placed on 
+                               // a valid language element'. But that does not
+                               // make sense.
+                               Report.Warning (1587, 2, Location, "XML comment is not placed on a valid language element");
+                       }
                }
 
                //
@@ -2341,12 +2517,18 @@ namespace Mono.CSharp
                {
                        if (xml_comment_buffer.Length > 0) {
                                string ret = xml_comment_buffer.ToString ();
-                               xml_comment_buffer.Length = 0;
+                               reset_doc_comment ();
                                return ret;
                        }
                        return null;
                }
 
+               void reset_doc_comment ()
+               {
+                       xml_comment_buffer.Length = 0;
+                       current_comment_location = Location.Null;
+               }
+
                public void cleanup ()
                {
                        if (ifstack != null && ifstack.Count >= 1) {
@@ -2354,7 +2536,7 @@ namespace Mono.CSharp
                                if ((state & REGION) != 0)
                                        Report.Error (1038, Location, "#endregion directive expected");
                                else 
-                                       Report.Error (1027, Location, "#endif directive expected");
+                                       Report.Error (1027, Location, "Expected `#endif' directive");
                        }
                                
                }