X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Filasm%2Fscanner%2FChangeLog;h=064721497aaeb473a47d5a876e3fab5187901309;hb=64f85a65b023522d3f34e9932e6a843e0ad8fc3b;hp=7ce7c6276ed86802dc048ebe0947cc6524fab147;hpb=89d34762bf501cbcc7077032868cc775129f2908;p=mono.git diff --git a/mcs/ilasm/scanner/ChangeLog b/mcs/ilasm/scanner/ChangeLog index 7ce7c6276ed..064721497aa 100644 --- a/mcs/ilasm/scanner/ChangeLog +++ b/mcs/ilasm/scanner/ChangeLog @@ -1,3 +1,158 @@ +2006-05-26 Ankit Jain + + * ILTables.cs (keywords): Move 'property' out of NET_2_0 . + +2006-05-11 Ankit Jain + + * ILTokenizingExpcetion.cs (Location): Remove. Already inherited from + ILAsmException. + +2006-05-10 Ankit Jain + + * ILTables.cs (keywords): Add 'property' for NET_2_0. + +2006-02-20 Ankit Jain + + * ILTable.cs (directives): Remove .constraint + +2006-02-20 Ankit Jain + + * ILTokenizingException.cs (ILTokenizingException): Derive from + ILAsmException. + +2006-01-31 Ankit Jain + + * ILTables.cs (keywords): Enable keyword 'type' only for NET_2_0 profile. + +2006-01-28 Ankit Jain + + * ILTables.cs (keywords): Fix typos in entry for 'charmaperror'. + +2006-01-19 Ankit Jain + + * ILTables.cs (keywords): Add 'type' keyword. + +2006-01-16 Ankit Jain + + * NumberHelper.cs (NumberHelper.Build): Try parsing numeric value as UInt64 or + double if Int64.Parse fails. + +2006-01-16 Ankit Jain + + * ILTables.cs (keywords): Add 'bestfit', 'charmaperror', 'on' & 'off'. + +2006-01-16 Ankit Jain + + * ILTables.cs (keywords): Add 'uint', this is a native UIntPtr type. + +2006-01-03 Ankit Jain + + * ILTokenizer.cs (ILTokenizer.idchars): Add ` to the list. + +2005-12-14 Ankit Jain + + * NumberHelper.cs (NumberHelper.Build): Set dec_found to false, if a '..' is + found after a number so that it is parsed as INT64 and not FLOAT64. + Fix #76977. + +2005-12-14 Ankit Jain + + * ILTables.cs (keywords): Add uint8, uint16, uint32 and uint64 keywords. + +2005-11-28 Ankit Jain + + * StringHelper.cs (idChars): Add ` to the list. + +2005-08-29 Ankit Jain + + * ILTables.cs (keywords): Comment out lcid keyword. Its not recognised as a + keyword by ilasm (ms.net) 1.1 + +2005-08-18 Ankit Jain + + * ILTables.cs: Comment out publickey keyword. + +2005-04-27 Raja R Harinath + + * ILTokenizer.cs (GetNextToken): Handle 'tail.' and 'unaligned.' + instructions. + +2004-04-26 Ankit Jain + + * ILTokenizer.cs (ILTokenizer.GetNextToken): Advance reader to look at + char after a '.' . + (ILTokenizer.BuildId): Never end an id on a DOT. + Parts of the patch from Harinath & Jackson. + +2004-12-02 Miguel de Icaza + + * ILTable.cs: Add new .stackreserve token. + +2004-07-27 Martin Baulig + + * ILTokenizer.cs (ILTokenizer.Location): New public property. + +2004-07-16 Jackson Harper + + * ILTokenizer.cs: Handle slashes in multiline comments + properly. Make the multiline comment eater loop a little more + readable. + +2004-07-06 Jackson Harper + + * NumberHelper.cs: Handle real numbers. Thanks to steve brown for + pointing this out. Also don't bother scanning the string again, + its allready been scanned. + +2004-06-10 Jackson Harper + + * ILTables.cs: Remove opcodes, these are contained in codegen/IntrTable.cs + * ILTokenizer.cs: Dont refer to ILTables::Opcodes + +2004-06-10 Jackson Harper + + * ILTokenizingExpcetion.cs: New exception thrown by the tokenizer + if any tokenizing errors occur. + * ILTokenizer.cs: + * NumberHelper.cs: Use the new exception. + +2004-06-04 Jackson Harper + + * ILTokenizer.cs: Handle comments first, handle whitespace in hex + blocks properly. + +2004-04-21 Jackson Harper + + * ILTokenizer.cs: Handle whitespace in hexbytes. + +2004-04-01 Jackson Harper + + * ILTokenizer.cs: Add flag and special parsing routine for byte + arrays. + +2003-12-10 Jackson Harper + + * ILTokenizer.cs: Handle dotted ids as a single token. This allows + keywords at the end of a dotted name. + +2003-10-14 Jackson Harper + + * ILTokenizer.cs: Fix /* */ comment blocks. + +2003-09-16 Jackson Harper + + * ILTables.cs: compilercontrolled is lowercase. I am guessing this + was an emacs introduced bug ;-). + +2003-08-10 Jackson Harper + + * StringHelper.cs: If an escape is not valid just use the \ + character. Fix bug where escape char was not getting set. + +2003-08-03 Jackson Harper + + * NumberHelper.cs: All numbers should allways be Int64 + 2003-07-30 Jackson Harper * ILReader.cs: Incremint colums while reading