You've already forked setup-python
							
							
				mirror of
				https://github.com/actions/setup-python.git
				synced 2025-11-04 16:56:40 +07:00 
			
		
		
		
	Initial pass
This commit is contained in:
		
							
								
								
									
										16
									
								
								node_modules/@babel/parser/bin/babel-parser.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								node_modules/@babel/parser/bin/babel-parser.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,16 @@
 | 
			
		||||
#!/usr/bin/env node
 | 
			
		||||
/* eslint no-var: 0 */
 | 
			
		||||
 | 
			
		||||
var parser = require("..");
 | 
			
		||||
var fs = require("fs");
 | 
			
		||||
 | 
			
		||||
var filename = process.argv[2];
 | 
			
		||||
if (!filename) {
 | 
			
		||||
  console.error("no filename specified");
 | 
			
		||||
  process.exit(0);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
var file = fs.readFileSync(filename, "utf8");
 | 
			
		||||
var ast = parser.parse(file);
 | 
			
		||||
 | 
			
		||||
console.log(JSON.stringify(ast, null, "  "));
 | 
			
		||||
		Reference in New Issue
	
	Block a user