()
| 626 | } |
| 627 | |
| 628 | function parse_with(){ |
| 629 | var n= input.next(); |
| 630 | var r={ |
| 631 | type:"WithStatement", |
| 632 | value:n.value, |
| 633 | poi:{line:n.poi.line,start:n.poi.start}, |
| 634 | condition:parse_condition(), |
| 635 | } |
| 636 | if(is_sp(':'))r.body=parse_block().body |
| 637 | return r |
| 638 | } |
| 639 | |
| 640 | function parse_keyword(){ |
| 641 | // assert raise |
no test coverage detected