Created
December 26, 2009 10:08
-
-
Save xulapp/263904 to your computer and use it in GitHub Desktop.
otbedit の JavaScript 用設定ファイル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// language setttings for JavaScript | |
KeywordNocase:FALSE | |
KeywordFile:js.txt | |
OpenComment:/* | |
CloseComment:*/ | |
RowComment:// | |
BreakChars: ,.:;(){}[]'"=><-|&*+-/%!?^ | |
OperatorChars:=!&|^~*/+-%<>;:.,(){}[] | |
BracketChars:)} | |
QuoteChars:"' | |
EscapeChar:\ | |
LanguageKeywordChars: | |
CStyleIndent:TRUE | |
TagLanguageMode:FALSE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// JavaScript keywords | |
// 7.5.2 Keywords | |
break | |
case | |
catch | |
continue | |
default | |
delete | |
do | |
else | |
finally | |
for | |
function | |
if | |
in | |
instanceof | |
new | |
return | |
switch | |
this | |
throw | |
try | |
typeof | |
var | |
void | |
while | |
with | |
// 7.5.3 Future Reserved Words | |
abstract | |
boolean | |
byte | |
char | |
class | |
const | |
debugger | |
double | |
enum | |
export | |
extends | |
final | |
float | |
goto | |
implements | |
import | |
int | |
interface | |
long | |
native | |
package | |
private | |
protected | |
public | |
short | |
static | |
super | |
synchronized | |
throws | |
transient | |
volatile | |
// JavaScript 1.6+ | |
let | |
yield | |
// 7.8 Literals | |
false,2 | |
null,2 | |
true,2 | |
// Properties | |
Infinity,2 | |
NaN,2 | |
__defineGetter__,2 | |
__defineSetter__,2 | |
__iterator__,2 | |
__lookupGetter__,2 | |
__lookupSetter__,2 | |
__noSuchMethod__,2 | |
__proto__,2 | |
arguments,2 | |
constructor,2 | |
prototype,2 | |
undefined,2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment