Data update
This commit is contained in:
parent
61b93a2cd1
commit
5af6d93694
858 changed files with 20572 additions and 2082 deletions
|
|
@ -1,7 +1,11 @@
|
|||
*> INVOKE
|
||||
INVOKE FooClass "someMethod" RETURNING bar *> Factory object
|
||||
INVOKE foo-instance "anotherMethod" RETURNING bar *> Instance object
|
||||
*> INVOKE statements.
|
||||
INVOKE my-class "some-method" *> Factory object
|
||||
USING BY REFERENCE some-parameter
|
||||
RETURNING foo
|
||||
INVOKE my-instance "another-method" *> Instance object
|
||||
USING BY REFERENCE some-parameter
|
||||
RETURNING foo
|
||||
|
||||
*> Inline method invocation
|
||||
MOVE FooClass::"someMethod" TO bar *> Factory object
|
||||
MOVE foo-instance::"anotherMethod" TO bar *> Instance object
|
||||
*> Inline method invocation.
|
||||
MOVE my-class::"some-method"(some-parameter) TO foo *> Factory object
|
||||
MOVE my-instance::"another-method"(some-parameter) TO foo *> Instance object
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
INVOKE foo-instance "FactoryObject" RETURNING foo-factory
|
||||
INVOKE some-instance "FactoryObject" RETURNING foo-factory
|
||||
*> foo-factory can be treated like a normal object reference.
|
||||
INVOKE foo-factory "someMethod"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue