Fix compilation of array initializer used inside field initializer of an anonymous...
[mono.git] / mcs / mcs / README
index 9b18be717a7970239296ca8b18a30daa4acc5ac3..f7023e675c73fd3b78fc1aad77453e1502227bcf 100644 (file)
@@ -1,4 +1,18 @@
-
+Completion support
+==================
+
+       Supported:
+       
+               a.<TAB> to complete members of type `a'
+               a<TAB> for types and namespaces
+               a.W<TAB>
+               a<TAB> for local variables
+
+       Unsupported:
+       
+               delegate { FOO.<TAB>
+               using statement autocompletion
+       
 These are the sources to the Mono C# compiler 
 ---------------------------------------------
 
@@ -12,16 +26,16 @@ Testing the Compiler
        test.
 
        Before commiting changes to MCS, make sure that all the tests
-       in `mcs/tests' pass, type:
+       in `mcs/tests' pass, and all the tests in 'mcs/errors' have the
+       expected result, type:
 
-       cd mcs/tests
-       make run-test-local
+         cd mcs                # The top-level 'mcs' directory
+         make compiler-tests
 
-       There is a new set of negative tests (errors that the compiler
-       should flag), but not all of them pass currently:
+       If you want to test the installed compiler, you can run:
 
-       cd mcs/errors
-       make run-test-local
+         cd mcs                # The top-level 'mcs' directory
+         make test-installed-compiler
 
 Full Bootstrap
 ==============