summaryrefslogtreecommitdiff
path: root/test.sh
blob: 4a3e02c6f6757b83945cc02b36d291ef10b4d2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash 
 
PS4='[${#FUNCNAME[*]}] ${BASH_SOURCE[0]}:${LINENO} (${FUNCNAME[0]}) +'
 
. bos-namespaces.sh
. bos-object-id.sh
. bos-mop.sh
. bos-dispatch.sh
. bos-mop-inheritance.sh
 
bos_5fA_5fmeta="bos-dispatch/invoke bos/mop/inheritance 0"
 
function A/thing() {
    echo "<$self> A/thing ($*)"
}
 
 
bos_5fB_5fmeta="bos-dispatch/invoke bos/mop/inheritance 0"
$bos_5fB_5fmeta set-superclasses-for B A
$bos_5fB_5fmeta make-mro-for B
 
function B/other() {
    echo "<$self> B/other ($*)"
}
 
bos-object-id/pack-self-into A 0 objA
bos-object-id/pack-self-into B 0 objB
 
$objA thing 1 2 3
$objB thing 4 5 6
$objB other 7 8 9