2020-08-27 15:00:44 +02:00
|
|
|
struct App {}
|
2020-07-25 00:02:44 +02:00
|
|
|
|
2020-08-27 15:00:44 +02:00
|
|
|
fn (mut app App) method_one() {}
|
|
|
|
fn (mut app App) method_two() int { return 0 }
|
|
|
|
fn (mut app App) method_three(s string) string { return s }
|
2020-07-25 00:02:44 +02:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
$for method in App.methods {
|
2020-09-28 06:13:38 +02:00
|
|
|
$if method.typ is fn(string) string {
|
2020-08-27 15:00:44 +02:00
|
|
|
println('$method.name IS `fn(string) string`')
|
|
|
|
} $else {
|
|
|
|
println('$method.name is NOT `fn(string) string`')
|
2020-07-25 00:02:44 +02:00
|
|
|
}
|
2020-09-28 06:13:38 +02:00
|
|
|
$if method.return_type !is int {
|
2020-08-27 15:00:44 +02:00
|
|
|
println('$method.name does NOT return `int`')
|
|
|
|
} $else {
|
|
|
|
println('$method.name DOES return `int`')
|
2020-07-25 00:02:44 +02:00
|
|
|
}
|
2020-09-28 06:13:38 +02:00
|
|
|
$if method.args[0].typ !is string {
|
2020-08-27 15:00:44 +02:00
|
|
|
println("${method.name}'s first arg is NOT `string`")
|
|
|
|
} $else {
|
|
|
|
println("${method.name}'s first arg IS `string`")
|
|
|
|
}
|
|
|
|
// TODO: Double inversion, should this even be allowed?
|
2020-09-28 06:13:38 +02:00
|
|
|
$if method.typ is fn() {
|
2020-08-27 15:00:44 +02:00
|
|
|
println('$method.name IS a void method')
|
|
|
|
} $else {
|
|
|
|
println('$method.name is NOT a void method')
|
|
|
|
}
|
|
|
|
println('')
|
2020-07-25 00:02:44 +02:00
|
|
|
}
|
|
|
|
}
|