1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-29 10:40:03 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/tiger/classes.tig

15 lines
182 B
Plaintext
Vendored

class A {
var a := 12
method method() : int = 1
}
type B = class extends A {
var b := 27
method another_method() = (
print("called");
self.b + self.method()
)
}