stylus-source 0.39.0 → 0.39.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f5603418eab8f6667aa481556068e6214f275c7
4
- data.tar.gz: f1a724e6e2cb80d12c65dcd0f5be0f8e5f41852f
3
+ metadata.gz: e057158d9472e3cc4624e8689fb850f838464d92
4
+ data.tar.gz: 3c58670f82f8224e32190ead8131aab57afe8bb5
5
5
  SHA512:
6
- metadata.gz: 08c33573685bee7533c689ab0cb6bb897255df411d13e7c1699f66d5590328532fd01ab39fdd5e77eceb46bde70e504d07470a784a0334c738f378e7f8dd22d3
7
- data.tar.gz: d755f8ce1608af951f15a317bfed77e59c3288408a65f01dda80c9373928596ec892988fd6468673c468a527ccac67e1911a2daae5ad34dc756e0352365bc784
6
+ metadata.gz: 51930b64b5598168a81e152ab0f04a889715340295fb8425805a2b23fcaa6b8ae9eced40f190c2f90843950c546f4fabe9e0ee2633b2bb4142eb82f0695101d1
7
+ data.tar.gz: 9bd590c2526fb1611ef7a9a06f293c8b4197047c6abbdd847aef95fdd56962a0abb85692bd95c9d4dd6f44dd8765c323eaca120afa9e672d4b0ab57158ba4e2d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.39.0
1
+ 0.39.1
data/vendor/lib/lexer.js CHANGED
@@ -147,6 +147,17 @@ Lexer.prototype = {
147
147
  return tok;
148
148
  },
149
149
 
150
+ /**
151
+ * Check if the current token is a part of class selector.
152
+ *
153
+ * @return {Boolean}
154
+ * @api private
155
+ */
156
+
157
+ isPartOfSelector: function() {
158
+ return !!(this.prev && '.' == this.prev.type);
159
+ },
160
+
150
161
  /**
151
162
  * Fetch next token.
152
163
  *
@@ -342,10 +353,16 @@ Lexer.prototype = {
342
353
  */
343
354
 
344
355
  null: function() {
345
- var captures;
356
+ var captures
357
+ , tok;
346
358
  if (captures = /^(null)\b[ \t]*/.exec(this.str)) {
347
359
  this.skip(captures);
348
- return new Token('null', nodes.null);
360
+ if (this.isPartOfSelector()) {
361
+ tok = new Token('ident', new nodes.Ident('null'));
362
+ } else {
363
+ tok = new Token('null', nodes.null);
364
+ }
365
+ return tok;
349
366
  }
350
367
  },
351
368
 
@@ -359,11 +376,17 @@ Lexer.prototype = {
359
376
  */
360
377
 
361
378
  keyword: function() {
362
- var captures;
379
+ var captures
380
+ , tok;
363
381
  if (captures = /^(return|if|else|unless|for|in)\b[ \t]*/.exec(this.str)) {
364
382
  var keyword = captures[1];
365
383
  this.skip(captures);
366
- return new Token(keyword, keyword);
384
+ if (this.isPartOfSelector()) {
385
+ tok = new Token('ident', new nodes.Ident(keyword));
386
+ } else {
387
+ tok = new Token(keyword, keyword);
388
+ }
389
+ return tok;
367
390
  }
368
391
  },
369
392
 
@@ -379,12 +402,17 @@ Lexer.prototype = {
379
402
  */
380
403
 
381
404
  namedop: function() {
382
- var captures;
405
+ var captures
406
+ , tok;
383
407
  if (captures = /^(not|and|or|is a|is defined|isnt|is not|is)(?!-)\b([ \t]*)/.exec(this.str)) {
384
408
  var op = captures[1];
385
409
  this.skip(captures);
386
- op = alias[op] || op;
387
- var tok = new Token(op, op);
410
+ if (this.isPartOfSelector()) {
411
+ tok = new Token('ident', new nodes.Ident(op));
412
+ } else {
413
+ op = alias[op] || op;
414
+ tok = new Token(op, op);
415
+ }
388
416
  tok.space = captures[2];
389
417
  return tok;
390
418
  }
@@ -42,5 +42,9 @@
42
42
  "readme": "# CSSOM\n\nCSSOM.js is a CSS parser written in pure JavaScript. It also a partial implementation of [CSS Object Model](http://dev.w3.org/csswg/cssom/). \n\n CSSOM.parse(\"body {color: black}\")\n -> {\n cssRules: [\n {\n selectorText: \"body\",\n style: {\n 0: \"color\",\n color: \"black\",\n length: 1\n }\n }\n ]\n }\n\n\n## [Parser demo](http://nv.github.com/CSSOM/docs/parse.html)\n\nWorks well in Google Chrome 6+, Safari 5+, Firefox 3.6+, Opera 10.63+.\nDoesn't work in IE < 9 because of unsupported getters/setters.\n\nTo use CSSOM.js in the browser you might want to build a one-file version with [Jake](http://github.com/mde/node-jake):\n\n ➤ jake\n build/CSSOM.js is done\n\nTo use it with Node.js:\n\n npm install cssom\n\n## [Specs](http://nv.github.com/CSSOM/spec/)\n",
43
43
  "readmeFilename": "README.mdown",
44
44
  "_id": "cssom@0.2.5",
45
- "_from": "cssom@0.2.x"
45
+ "dist": {
46
+ "shasum": "a290e1d4d09149286a0fdc3198126a0f9a49712a"
47
+ },
48
+ "_from": "cssom@0.2.x",
49
+ "_resolved": "https://registry.npmjs.org/cssom/-/cssom-0.2.5.tgz"
46
50
  }
data/vendor/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stylus",
3
3
  "description": "Robust, expressive, and feature-rich CSS superset",
4
- "version": "0.39.0",
4
+ "version": "0.39.1",
5
5
  "author": "TJ Holowaychuk <tj@vision-media.ca>",
6
6
  "keywords": [
7
7
  "css",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stylus-source
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.39.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk