2
0

ChangeLog 4.6 KB

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