ChangeLog 6.8 KB

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