mirror of
				https://git.sfja.dk/Mikkel/slige.git
				synced 2025-10-31 00:48:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			294 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			294 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { File } from "../ast/ast.ts";
 | |
| import { File as CtxFile } from "../ctx.ts";
 | |
| import { todo } from "../util.ts";
 | |
| 
 | |
| export class Parser {
 | |
|     public constructor(
 | |
|         private file: CtxFile,
 | |
|         private text: string,
 | |
|     ) {}
 | |
| 
 | |
|     public parse(): File {
 | |
|         return todo();
 | |
|     }
 | |
| }
 |