Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascrockford committed May 19, 2016
1 parent 01b283f commit e343b7b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions jslint.js
@@ -1,5 +1,5 @@
// jslint.js
// 2016-05-17
// 2016-05-18
// Copyright (c) 2015 Douglas Crockford (www.JSLint.com)

// Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down Expand Up @@ -374,7 +374,6 @@ var jslint = (function JSLint() {
var rx_unsafe = /[\u0000-\u001f\u007f-\u009f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/;
// identifier
var rx_identifier = /^([a-zA-Z_$][a-zA-Z0-9_$]*)$/;
var rx_module = /^[a-zA-Z0-9_$:.@\/]+$/;

This comment has been minimized.

Copy link
@EvgenyOrekhov

EvgenyOrekhov May 19, 2016

Now you have undeclared 'rx_module' on line 3302 column 13

        if (!rx_module.test(token.value)) {
var rx_bad_property = /^_|\$|Sync$|_$/;
// star slash
var rx_star_slash = /\*\//;
Expand Down Expand Up @@ -4683,7 +4682,7 @@ var jslint = (function JSLint() {
}
return {
directives: directives,
edition: "2016-05-17",
edition: "2016-05-18",
functions: functions,
global: global,
id: "(JSLint)",
Expand Down

0 comments on commit e343b7b

Please sign in to comment.