otbedit の JavaScript 用設定ファイル
// language setttings for JavaScript | |
KeywordNocase:FALSE | |
KeywordFile:js.txt | |
OpenComment:/* | |
CloseComment:*/ | |
RowComment:// | |
BreakChars: ,.:;(){}[]'"=><-|&*+-/%!?^ | |
OperatorChars:=!&|^~*/+-%<>;:.,(){}[] | |
BracketChars:)} | |
QuoteChars:"' | |
EscapeChar:\ | |
LanguageKeywordChars: | |
CStyleIndent:TRUE | |
TagLanguageMode:FALSE |
// 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