ChangeLog 4.1 KB

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