Remove .hh_file from hhas
[hiphop-php.git] / hphp / test / quick / incorrect_closure.hhas
blob7ad2693b90002c16d8f291e60bcb2353b0cc94d2
1 .main {
2   Int 1
3   RetC
6 .class [unique] A extends Closure {
7   .method [public] <"" N  > foo() isClosureBody {
8     Int 1
9     RetC
10   }
13 .class B extends Closure {
14   .method [public] <"" N  > __invoke() isClosureBody {
15     Int 1
16     RetC
17   }
20 .class [unique] C extends Closure {
21   .method [private] <"" N  > __invoke() isClosureBody {
22     Int 1
23     RetC
24   }
27 .class [unique] D extends Closure {
28   .method [public] <"" N  > __invoke() isClosureBody {
29     Int 1
30     RetC
31   }
32   .method [public] <"" N  > foo() {
33     Int 1
34     RetC
35   }
38 .class [unique] E extends Closure {
39   .method [public] <"" N  > __invoke() {
40     Int 1
41     RetC
42   }