2
0

ChangeLog 5.8 KB

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