ChangeLog 6.2 KB

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