Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
#! instance_methods(m, n, o)
|
||||
#! instance_properties(p, q, r)
|
||||
class C {
|
||||
construct new() {}
|
||||
|
||||
m() {}
|
||||
|
||||
n() {}
|
||||
|
||||
o() {}
|
||||
|
||||
p {}
|
||||
|
||||
q {}
|
||||
|
||||
r {}
|
||||
}
|
||||
|
||||
var c = C.new() // create an object of type C
|
||||
System.print("List of instance methods available for object 'c':")
|
||||
for (method in c.type.attributes.self["instance_methods"]) System.print(method.key)
|
||||
Loading…
Add table
Add a link
Reference in a new issue