diff options
author | dakkar <dakkar@thenautilus.net> | 2023-07-22 16:05:29 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2023-07-22 16:05:29 +0100 |
commit | 4b1b923e1426904b556349c8fe4b1b0453a7223f (patch) | |
tree | 85f1f7b70ad66b5199501d148a9fc7d27b6c099e /bos-meta-class.sh | |
parent | single meta class (diff) | |
download | bash-object-system-4b1b923e1426904b556349c8fe4b1b0453a7223f.tar.gz bash-object-system-4b1b923e1426904b556349c8fe4b1b0453a7223f.tar.bz2 bash-object-system-4b1b923e1426904b556349c8fe4b1b0453a7223f.zip |
move constructor to global base class
Diffstat (limited to 'bos-meta-class.sh')
-rw-r--r-- | bos-meta-class.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bos-meta-class.sh b/bos-meta-class.sh index 4d701b5..9bfdd0a 100644 --- a/bos-meta-class.sh +++ b/bos-meta-class.sh @@ -53,6 +53,8 @@ function bos/meta/class/make-mro-for() { $self get-superclasses-for-into nextclasses "$class" done + mro+=( "bos/base" ) + return 0 } |