difftastic/vendored_parsers/tree-sitter-hack/test/cases/declarations/class-const-ctx.hack

8 lines
253 B
Plaintext

abstract class WithConstant {
abstract const ctx CAnotherOne as [io];
abstract const ctx COne super [defaults];
abstract const ctx CMany super [defaults] as [io, rand];
const ctx C = [defaults];
const ctx CWithBound super [defaults] = [io];
}