diff options
author | Andreas Rumpf <andreasrumpf@noname> | 2009-09-23 23:38:00 +0200 |
---|---|---|
committer | Andreas Rumpf <andreasrumpf@noname> | 2009-09-23 23:38:00 +0200 |
commit | 3f3dda5a77fa8faf6d97aa5a0ed3b0fc6e8c0918 (patch) | |
tree | 81fcf664ab2abfda200061e57fa488ae17b03192 /nim/rnimsyn.pas | |
parent | 66a7e3d37c0303997a6b1a3b7ec263dfb8c07748 (diff) | |
download | Nim-3f3dda5a77fa8faf6d97aa5a0ed3b0fc6e8c0918.tar.gz |
implemented multi methods
Diffstat (limited to 'nim/rnimsyn.pas')
-rwxr-xr-x | nim/rnimsyn.pas | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nim/rnimsyn.pas b/nim/rnimsyn.pas index b3271a3bb..1ad1c9408 100755 --- a/nim/rnimsyn.pas +++ b/nim/rnimsyn.pas @@ -1235,6 +1235,10 @@ begin putWithSpace(g, tkProc, 'proc'); gproc(g, n); end; + nkMethodDef: begin + putWithSpace(g, tkMethod, 'method'); + gproc(g, n); + end; nkIteratorDef: begin putWithSpace(g, tkIterator, 'iterator'); gproc(g, n); |