(per feedback from Austin)
R=rsc
DELTA=7 (0 added, 2 deleted, 5 changed)
OCL=34158
CL=34161
<pre class="ebnf">
TypeDecl = "type" ( TypeSpec | "(" [ TypeSpecList ] ")" ) .
TypeSpecList = TypeSpec { ";" TypeSpec } [ ";" ] .
-TypeSpec = identifier ( Type | "struct" | "interface" ) .
+TypeSpec = identifier Type .
</pre>
<pre>
-type IntArray [16] int
+type IntArray [16]int
type (
Point struct { x, y float };
Polar Point
)
-type Comparable interface
-
type TreeNode struct {
left, right *TreeNode;
value *Comparable;