Skip to content

Instantly share code, notes, and snippets.

@joseoliv
Created June 22, 2018 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joseoliv/1ab8479cb4316928e0b404c56d933b8b to your computer and use it in GitHub Desktop.
Save joseoliv/1ab8479cb4316928e0b404c56d933b8b to your computer and use it in GitHub Desktop.
Metaobject callUnaryMethods
package metaobjectTest
@doc{*
callUnaryMethods generates code that calls all methods of
the current prototype whose name matches with the pattern
that is the annotation parameter.
*}
object CallUnaryMethods
func run {
@callUnaryMethods(".*Test")
assert count == 3;
}
func oneTest { ++count }
func twoTest { ++count }
func threeTest { ++count }
var Int count = 0;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment