ChangeLog 3.4 KB

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