changed ::: to :: to indicate class variables, parent class, retvar
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-02-04 01:57:53 +09:00
parent b20d6b14d8
commit 48e6df233b
17 changed files with 59 additions and 37 deletions

View File

@ -2,7 +2,7 @@
defclass A | a b c | {
defun:*newInstance(x y z) {
defun :*newInstance(x y z) {
set a x;
set b y;
set c z;
@ -14,9 +14,9 @@ defclass A | a b c | {
defun get-c() { return self.c; };
};
defclass B ::: A | d e f | {
defclass B :: A | d e f | {
defun:*newInstance(x y z) {
defun :*newInstance(x y z) {
super:newInstance (* x 2) (* y 2) (* z 2);
set d x;
set e y;