MCPcopy Create free account
hub / github.com/davidkingzyb/SCAST / parse_expression

Function parse_expression

js/SCAST.js:583–589  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

581 }
582 }
583 function parse_expression(){
584 if (is_punc("("))return parse_arguments();
585 else if (is_punc("{")) return parse_block();
586 else if(is_kw("new"))return parse_new();
587 else if (is_id()) return parse_id();
588 else return parse_next();
589 }
590
591 function parse_statement() {
592 try{

Callers 1

parse_statementFunction · 0.70

Calls 8

is_puncFunction · 0.70
parse_argumentsFunction · 0.70
parse_blockFunction · 0.70
is_kwFunction · 0.70
parse_newFunction · 0.70
is_idFunction · 0.70
parse_idFunction · 0.70
parse_nextFunction · 0.70

Tested by

no test coverage detected