ChangeLog 6.5 KB

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