summaryrefslogtreecommitdiff
path: root/src/ast.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast.ml')
-rw-r--r--src/ast.ml3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ast.ml b/src/ast.ml
index c204ff8..48a2de3 100644
--- a/src/ast.ml
+++ b/src/ast.ml
@@ -84,8 +84,7 @@ type proto = {
type cls_mem =
| CVar of var_type * ident
- | CMethod of proto
- | CVirtualMethod of proto
+ | CMethod of proto * bool (* is method virtual *)
type cls = {
c_name : tident;