number = int_lit [ "p" int_lit ] .
()
| 311 | |
| 312 | // number = int_lit [ "p" int_lit ] . |
| 313 | func (p *gc_parser) parse_number() { |
| 314 | p.parse_int() |
| 315 | if p.lit == "p" { |
| 316 | p.next() |
| 317 | p.parse_int() |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | //------------------------------------------------------------------------------- |
| 322 | // gc_parser.types |
no test coverage detected