Skip to content

Commit

Permalink
ADSAFE.go(dom, lib)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascrockford committed Dec 20, 2011
1 parent e25b8ea commit 9b244e0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions jslint.js 100755 → 100644
@@ -1,5 +1,5 @@
// jslint.js
// 2011-12-09
// 2011-12-19

// Copyright (c) 2002 Douglas Crockford (www.JSLint.com)

Expand Down Expand Up @@ -6230,9 +6230,10 @@ klass: do {
if (script[0].second.length !== 2 ||
aint(script[0].second[1], 'id', 'function') ||
!script[0].second[1].first ||
script[0].second[1].first.length !== 2 ||
aint(script[0].second[1].first[0], 'string', 'dom') ||
aint(script[0].second[1].first[1], 'string', 'lib')) {
script[0].second[1].first.length > 2 ||
(script[0].second[1].first.length === 2 &&
aint(script[0].second[1].first[1], 'string', 'lib'))) {
stop('adsafe_go', next_token);
}
adsafe_went = true;
Expand Down Expand Up @@ -6938,7 +6939,7 @@ klass: do {
};
itself.jslint = itself;

itself.edition = '2011-12-09';
itself.edition = '2011-12-19';

return itself;
}());

0 comments on commit 9b244e0

Please sign in to comment.