()
| 442 | }; |
| 443 | |
| 444 | var inheritance = function() { |
| 445 | all_ws(); |
| 446 | if (consume(OTHER, ":")) { |
| 447 | all_ws(); |
| 448 | var inh = consume(ID) || error("No type in inheritance"); |
| 449 | return inh.value; |
| 450 | } |
| 451 | }; |
| 452 | |
| 453 | var operation_rest = function(ret, store) { |
| 454 | all_ws(); |
no test coverage detected