ChangeLog 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  2. * TempFileCollection.cs: don't create a Random object on every call to
  3. BasePath.
  4. 2004-04-26 Atsushi Enomoto <[email protected]>
  5. * CodeGenerator.cs : delegate was output as usual class.
  6. 2004-03-29 Lluis Sanchez Gual <[email protected]>
  7. * Executor.cs: Implemented.
  8. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  9. * TempFileCollection.cs: fixed typo in Delete. Closes bug #54443.
  10. 2004-02-10 Jackson Harper <[email protected]>
  11. * CompilerParameters.cs: TempFiles should never return null.
  12. 2004-02-04 Jackson Harper <[email protected]>
  13. * CodeGenerator.cs (GenerateExpression): Don't allow null
  14. expressions. Throw ArgumentException if the expression type is not
  15. handled.
  16. * CodeGenerator.cs (GenerateStatement): Add line pragmas if they
  17. are set. Throw ArgumentException if the expression type is not handled.
  18. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  19. * TempFileCollection.cs: fixed temp path in BaseDir.
  20. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  21. * CodeGenerator.cs: fixed assembly level attribute generation.
  22. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  23. * CodeGenerator.cs: When sorting the members of a type, keep the
  24. relative order of the members of the same kind.
  25. 2003-08-05 Lluis Sanchez Gual <[email protected]>
  26. * CodeGenerator.cs: Generate comments for properties and fields.
  27. Write a line separator between type declarations.
  28. 2003-07-10 Andreas Nahr <[email protected]>
  29. * Executor.cs: Changed abstract to sealed
  30. 2003-07-07 Andreas Nahr <[email protected]>
  31. * CodeDomProvider.cs: Removed unneccesary attribute according to corecompare
  32. * Executor.cs: Fixed signature with ref calls according to corecompare and made neccessary changes
  33. 2003-06-20 Andreas Nahr <[email protected]>
  34. * CodeCompiler.cs: Nearly completely implemented
  35. * CodeDomProvider.cs: Added missing Attribute, restyled according to style guidelines
  36. * CodeGenerator.cs: Fixed visibilies, added missing members, implemented members, stubbed out missing member, restyled according to style guidelines
  37. * CodeParser.cs: Added and implemented (ok no real implementation needed ;)
  38. * CompilerErrorCollection.cs: Removed unneeded MonoTODOs, restyled according to style guidelines
  39. * CompilerParameters.cs: Fixed wrong properties, Added Initializers, restyled according to style guidelines
  40. * CompilerResults.cs: Added Evidence property, added initial values
  41. * Executor.cs: Added and partially implemented (should probably be used by CodeCompiler)
  42. * CompilerOptions.cs: Deleted this file (such a class does not exist)
  43. 2003-05-16 Dick Porter <[email protected]>
  44. * TempFileCollection.cs: Implement
  45. 2003-04-28 Gonzalo Paniagua Javier <[email protected]>
  46. * CodeGenerator.cs:
  47. (GenerateSnippetStatement): use WriteLine instead of Write.
  48. 2003-04-25 Gonzalo Paniagua Javier <[email protected]>
  49. * CodeGenerator.cs:
  50. (GenerateCodePrimitive): special case strings and chars (bool was
  51. already a special case). Throw an exception if the type is not a
  52. primitive type.
  53. 2003-04-24 Gonzalo Paniagua Javier <[email protected]>
  54. * CodeGenerator.cs: more fixes and sorted the output.
  55. * IndentedTextWriter.cs: don't output tabs in WriteLine ().
  56. 2003-04-23 Gonzalo Paniagua Javier <[email protected]>
  57. * CodeGenerator.cs:
  58. (GenerateCompileUnitStart):
  59. (GenerateCompileUnitEnd): removed debug output.
  60. (GeneratePrimitiveExpression): handle null and bool as special cases.
  61. (GenerateType): added type constructor and constructor calls.
  62. 2003-02-20 Alfonso Ali <[email protected]>
  63. * CodeGenerator.cs: Generates the entry point method.
  64. 2003-01-10 Duncan Mak <[email protected]>
  65. * CompilerErrorCollection.cs:
  66. * CompilerParameters.cs: Patch from Sean Kasun
  67. <[email protected]> implementing most of the MonoTODOs in
  68. CompilerErrorCollection and the CompilerParameters overloads in CompilerParameters.cs.
  69. 2002-11-30 Jackson Harper <[email protected]>
  70. * CodeCompiler.cs: Removed TODO attribute from abstract members
  71. 2002-11-30 Jackson Harper <[email protected]>
  72. * CodeCompiler.cs: Added stub
  73. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  74. * CodeDomProvider.cs:
  75. * IndentedTextWriter.cs: misc. fixes.
  76. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  77. * CompilerError.cs: implemented.
  78. * CompilerErrorCollection.cs: stubbed out and fix inheritance.
  79. * GeneratorSupport.cs: fixed values.
  80. 2002-05-28 Daniel Stodden <[email protected]>
  81. * CodeDomProvider.cs: added, incomplete
  82. * CodeGeneratorOptions.cs: added, complete
  83. * CompilerErrorCollection.cs: added, stub
  84. * CompilerOptions.cs: added, stub
  85. * CompilerResults.cs: added, complete
  86. * GeneratorSupport.cs: added, complete
  87. * ICodeCompiler.cs: added, complete
  88. * ICodeParser.cs: added, complete
  89. * IndentedTextWriter.cs: added, complete
  90. * LanguageOptions.cs: added, complete
  91. * TempFileCollection.cs: added, stub
  92. * ICodeGenerator.cs: added, complete
  93. 2002-01-05 Ravi Pratap <[email protected]>
  94. * CodeGenerator.cs : Mark bits with MonoTODO.
  95. 2001-07-15 Sean MacIsaac <[email protected]>
  96. * CodeGenerator.cs: moved using statement out of namespace
  97. declaration.