Jump to content

Manual:Jsparse.php/ko

From mediawiki.org
This page is a translated version of the page Manual:Jsparse.php and the translation is 29% complete.

상세

jsparse.php file is a maintenance script for testing JavaScript validity using JSMin+'s parser. This is a useful feature to run parsing/syntax check on JavaScript files.

옵션/인수

This script takes the filenames of the files to be validated as arguments, separated by spaces.

사용법

php maintenance/run.php jsparse filename
In MediaWiki version 미디어위키 1.39 and earlier, you must invoke maintenance scripts using php maintenance/scriptName.php instead of php maintenance/run.php scriptName.

Checking valid file

example.js
$( function () {
	var $longList = $("#longList").addClass("grid_row");
	var $leftDiv = $("<div>");
	var $rightDiv = $("<div>");
	
	$longList.append($leftDiv, $rightDiv);
});
Terminal

Checking invalid file

example.js
$( function () {
	var $longList = $("#longList").addClass("grid_row");
	var $leftDiv = $("<div>");
	var $rightDiv = $("<div>");
	
    // Intentionally removed `);` from the end for the jsparse.php demo
	$longList.append($leftDiv, $rightDiv
});
Terminal

Common error

$filename ERROR: could not read file

This error occurs when the file does not exist or the user running the script does not have permission to read the file.

If the file does exist, check the file permissions. If you are root user, then you can run the script with sudo.

같이 보기