Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Weber <aaron@mono-cvs.ximian.com>2001-07-08 02:23:21 +0400
committerAaron Weber <aaron@mono-cvs.ximian.com>2001-07-08 02:23:21 +0400
commit25b5d7a7ff00b6ab4ce35d7604f4e45801791b85 (patch)
treedccebd348f7f48b474fc4253e4f158087dcc4bc9 /doc/status
parent4ba499dd3119a08c717effca3812cfeac4a3bb84 (diff)
2001-07-07 Aaron Weber <aaron@ximian.com>
* doc/thanks: style, grammar. (FIXME: "a to read"? clarify) * doc/testing style, grammar. * doc/status: same. * doc/runtime: same. * doc/resources: same. * doc/rationale: same. * doc/ideas: same. * doc/gcc-frontend: same. (FIXME: clarify) * doc/faq: same. (FIXME: merge w/cheridy's version) * doc/documentation: same. * doc/class-library: same. * doc/index: same. svn path=/trunk/mono/; revision=67
Diffstat (limited to 'doc/status')
-rw-r--r--doc/status19
1 files changed, 9 insertions, 10 deletions
diff --git a/doc/status b/doc/status
index 07bdfe040c8..0002c33134d 100644
--- a/doc/status
+++ b/doc/status
@@ -4,30 +4,29 @@
Pieces of Mono that have been implemented:
<ul>
- * C# compiler: The C# parser is pretty much complete,
- it generates a parse tree and now semantic analysis and a few
- compiler lever optimizations need to be implemented as well as
- code generation.
+ * C# compiler: The C# parser can now generate parse
+ trees. Next up: semantic analysis, compiler lever optimizations
+ and code generation.
- * Metadata library: can currently parse and load
+ * Metadata library: Can currently parse and load
information from .NET modules (executables and DLL
files). It has a few bugs outstanding (table
dimension computation is incorrect).
Parsing of Exception tables is missing.
- It lacks Token to (Table, Index) mapping, but should
- be trivial to write.
+ It lacks Token to (Table, Index) mapping, but this
+ should be trivial to write.
- * Disassembler: Can disassemble .NET modules; It is
- lacking Exception handling as well as useful debugging
+ * Disassembler: Can disassemble .NET modules. Still
+ lacking exception handling as well as useful debugging
tools (hex dumping, token dumping).
* Class Libraries: Only a few classes have been
implemented.
</ul>
- Tasks on the critical path that we are actively working on:
+ Tasks on the critical path:
<ul>
* Method and Field resolution.