mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	Although those are the only valid options parse_primary_expression is sometimes called when only an expression is valid which means it did not check match_expression and might fail the now removed VERIFY.
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			613 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			613 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
describe("parsing", () => {
 | 
						|
    test("can parse call import call", () => {
 | 
						|
        expect("import('a')").toEval();
 | 
						|
        expect("import('a', )").toEval();
 | 
						|
        expect("import('a', {options: true})").toEval();
 | 
						|
    });
 | 
						|
 | 
						|
    test("does not crash on unexpected tokens after import", () => {
 | 
						|
        expect("f = import('a')").toEval();
 | 
						|
 | 
						|
        expect("f= import").not.toEval();
 | 
						|
        expect("f= import;").not.toEval();
 | 
						|
        expect("f= import?").not.toEval();
 | 
						|
        expect("f= import'").not.toEval();
 | 
						|
        expect("f= import 'a'").not.toEval();
 | 
						|
        expect("f= import['a']").not.toEval();
 | 
						|
    });
 | 
						|
});
 |