()
| 143 | }; |
| 144 | |
| 145 | var primitive_type = function() { |
| 146 | var num_type = integer_type() || float_type(); |
| 147 | if (num_type) return num_type; |
| 148 | all_ws(); |
| 149 | if (consume(ID, "boolean")) return "boolean"; |
| 150 | if (consume(ID, "byte")) return "byte"; |
| 151 | if (consume(ID, "octet")) return "octet"; |
| 152 | }; |
| 153 | |
| 154 | var const_value = function() { |
| 155 | if (consume(ID, "true")) return { type: "boolean", value: true }; |
no test coverage detected