|
Revision 3796, 0.8 KB
(checked in by sukyoungryu, 6 months ago)
|
|
[static checker] Implemented type well-formedness check. Finished implemention of generating Scala-style visitors, Walker, that Eric started. Added a test and fixed some tests. Closed Ticket #192.
Currently check the well-formedness of types before type checking. Checking the well-formedness of types after type checking breaks. Working on it now.
|
| Line | |
|---|
| 1 | (******************************************************************************* |
|---|
| 2 | Copyright 2009 Sun Microsystems, Inc., |
|---|
| 3 | 4150 Network Circle, Santa Clara, California 95054, U.S.A. |
|---|
| 4 | All rights reserved. |
|---|
| 5 | |
|---|
| 6 | U.S. Government Rights - Commercial software. |
|---|
| 7 | Government users are subject to the Sun Microsystems, Inc. standard |
|---|
| 8 | license agreement and applicable provisions of the FAR and its supplements. |
|---|
| 9 | |
|---|
| 10 | Use is subject to license terms. |
|---|
| 11 | |
|---|
| 12 | This distribution may include materials developed by third parties. |
|---|
| 13 | |
|---|
| 14 | Sun, Sun Microsystems, the Sun logo and Java are trademarks or registered |
|---|
| 15 | trademarks of Sun Microsystems, Inc. in the U.S. and other countries. |
|---|
| 16 | ******************************************************************************) |
|---|
| 17 | |
|---|
| 18 | component AfterTypeChecking |
|---|
| 19 | export Executable |
|---|
| 20 | |
|---|
| 21 | f(x: ZZ32[3], y: ZZ32^(2 BY 4)): () = () |
|---|
| 22 | |
|---|
| 23 | run() = () |
|---|
| 24 | |
|---|
| 25 | end |
|---|