hcl/t/class-5001.err
hyung-hwan a0e47d79f9
All checks were successful
continuous-integration/drone/push Build is passing
wip - tiny change to out-of-tree method defintion handling
2024-03-16 16:36:01 +09:00

40 lines
639 B
Plaintext

defclass B | x y | {
};
defclass X :: B | a b | {
defun :* new(t) {
| a |
set self.a t;
set a 100;
set self.b (* t 2);
set self.c (fun(b) { ##ERROR: syntax error - unknown class-level variable name
printf "xxxx [%d]\n" b;
});
return self;
};
defun print() {
self.c (+ self.a self.b);
printf "a=%d b=%d\n" self.a self.b;
}
};
---
defclass X {
defun :* xxx() {
return X;
}
defun :* qqq() {
return "hello"
}
defun String:length() { ##ERROR: syntax error - function name not valid
return (str.length self)
}
}