less 1.7.0 → 1.7.5
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.
- package/.grunt/grunt-contrib-jasmine/es5-shim.js +1360 -0
- package/.idea/jsLibraryMappings.xml +0 -1
- package/.idea/workspace.xml +182 -183
- package/.travis.yml +0 -1
- package/CHANGELOG.md +60 -2
- package/CONTRIBUTING.md +1 -1
- package/Gruntfile.js +12 -24
- package/LICENSE +0 -2
- package/README.md +5 -3
- package/benchmark/less-benchmark.js +1 -2
- package/bin/lessc +13 -11
- package/bower.json +2 -2
- package/build/rhino-modules.js +1 -1
- package/dist/less-1.7.0.js +59 -59
- package/dist/less-1.7.0.min.js +12 -12
- package/dist/less-1.7.1.js +7936 -0
- package/dist/less-1.7.1.min.js +16 -0
- package/dist/less-1.7.2.js +7938 -0
- package/dist/less-1.7.2.min.js +16 -0
- package/dist/less-1.7.3.js +7942 -0
- package/dist/less-1.7.3.min.js +16 -0
- package/dist/less-1.7.4.js +7979 -0
- package/dist/less-1.7.4.min.js +16 -0
- package/dist/less-1.7.5.js +8008 -0
- package/dist/less-1.7.5.min.js +16 -0
- package/dist/less-rhino-1.7.0.js +48 -48
- package/dist/less-rhino-1.7.1.js +9311 -0
- package/dist/less-rhino-1.7.2.js +9313 -0
- package/dist/less-rhino-1.7.3.js +9317 -0
- package/dist/less-rhino-1.7.4.js +9354 -0
- package/dist/less-rhino-1.7.5.js +9383 -0
- package/dist/lessc-rhino-1.7.0.js +2 -2
- package/dist/lessc-rhino-1.7.1.js +449 -0
- package/dist/lessc-rhino-1.7.2.js +449 -0
- package/dist/lessc-rhino-1.7.3.js +449 -0
- package/dist/lessc-rhino-1.7.4.js +449 -0
- package/dist/lessc-rhino-1.7.5.js +449 -0
- package/lib/less/browser.js +14 -9
- package/lib/less/env.js +2 -0
- package/lib/less/fs.js +10 -0
- package/lib/less/functions.js +41 -38
- package/lib/less/import-visitor.js +9 -7
- package/lib/less/index.js +30 -18
- package/lib/less/lessc_helper.js +1 -0
- package/lib/less/parser/parser.js.orig +1747 -0
- package/lib/less/parser.js +81 -40
- package/lib/less/rhino.js +3 -3
- package/lib/less/source-map-output.js +1 -1
- package/lib/less/to-css-visitor.js +3 -0
- package/lib/less/tree/anonymous.js +7 -3
- package/lib/less/tree/directive.js +6 -0
- package/lib/less/tree/element.js +6 -22
- package/lib/less/tree/import.js +1 -1
- package/lib/less/tree/mixin.js +4 -3
- package/lib/less/tree/quoted.js +12 -4
- package/lib/less/tree/rule.js +7 -4
- package/lib/less/tree/rule.js.orig +164 -0
- package/lib/less/tree/ruleset.js +27 -2
- package/lib/less/tree/selector.js +1 -1
- package/lib/less/tree.js +2 -2
- package/package.json +13 -12
- package/test/browser/less.js +7317 -6931
- package/test/css/comments.css +8 -0
- package/test/css/css-3.css +9 -0
- package/test/css/functions.css +8 -8
- package/test/css/import-inline.css +4 -1
- package/test/css/import.css +6 -0
- package/test/css/javascript.css +5 -0
- package/test/css/mixins-guards.css +14 -3
- package/test/css/mixins.css +3 -0
- package/test/css/property-name-interp.css +1 -0
- package/test/css/urls.css +6 -0
- package/test/index.js +1 -1
- package/test/less/comments.less +14 -1
- package/test/less/css-3.less +12 -1
- package/test/less/errors/color-invalid-hex-code.less +3 -0
- package/test/less/errors/color-invalid-hex-code.txt +4 -0
- package/test/less/errors/color-invalid-hex-code2.less +3 -0
- package/test/less/errors/color-invalid-hex-code2.txt +4 -0
- package/test/less/errors/import-malformed.less +1 -0
- package/test/less/errors/import-malformed.txt +3 -0
- package/test/less/errors/import-no-semi.txt +1 -1
- package/test/less/errors/javascript-error.less +1 -1
- package/test/less/errors/javascript-error.txt +2 -2
- package/test/less/import-inline.less +1 -0
- package/test/less/import.less +8 -1
- package/test/less/javascript.less +9 -0
- package/test/less/mixins-guards.less +17 -3
- package/test/less/mixins.less +4 -0
- package/test/less/property-name-interp.less +4 -1
- package/test/less/property-name-interp.less.orig +59 -0
- package/test/less/urls.less +12 -0
- package/test/less-test.js +7 -8
- package/test/modify-vars.js +17 -0
- package/test/sourcemaps/basic.json +1 -1
- package/tmp/browser/test-runner-main.html +4 -0
- package/tmp/less.js +8295 -0
- package/build/README.md +0 -51
- package/tmp/browser/test-postProcessor.html +0 -59
- package/tmp/browser/test-runner-browser.html +0 -59
- package/tmp/browser/test-runner-errors.html +0 -267
- package/tmp/browser/test-runner-global-vars.html +0 -59
- package/tmp/browser/test-runner-legacy.html +0 -59
- package/tmp/browser/test-runner-modify-vars.html +0 -59
- package/tmp/browser/test-runner-no-js-errors.html +0 -59
- package/tmp/browser/test-runner-production.html +0 -55
- package/tmp/browser/test-runner-relative-urls.html +0 -59
- package/tmp/browser/test-runner-rootpath-relative.html +0 -59
- package/tmp/browser/test-runner-rootpath.html +0 -59
package/dist/less-rhino-1.7.0.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* LESS.js v1.7.0 RHINO | Copyright (c) 2009-2014, Alexis Sellier <self@cloudhead.net> */
|
|
2
|
-
|
|
1
|
+
/* LESS.js v1.7.0 RHINO | Copyright (c) 2009-2014, Alexis Sellier <self@cloudhead.net> */
|
|
2
|
+
|
|
3
3
|
//
|
|
4
4
|
// Stub out `require` in rhino
|
|
5
5
|
//
|
|
@@ -12,12 +12,12 @@ function require(arg) {
|
|
|
12
12
|
return resultModule;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
|
|
16
16
|
if (typeof(window) === 'undefined') { less = {} }
|
|
17
17
|
else { less = window.less = {} }
|
|
18
18
|
tree = less.tree = {};
|
|
19
19
|
less.mode = 'rhino';
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
(function() {
|
|
22
22
|
|
|
23
23
|
console = function() {
|
|
@@ -149,7 +149,7 @@ less.mode = 'rhino';
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
})();
|
|
152
|
-
|
|
152
|
+
|
|
153
153
|
var less, tree;
|
|
154
154
|
|
|
155
155
|
// Node.js does not have a header file added which defines less
|
|
@@ -2218,7 +2218,7 @@ less.Parser.serializeVars = function(vars) {
|
|
|
2218
2218
|
|
|
2219
2219
|
return s;
|
|
2220
2220
|
};
|
|
2221
|
-
|
|
2221
|
+
|
|
2222
2222
|
(function (tree) {
|
|
2223
2223
|
|
|
2224
2224
|
tree.functions = {
|
|
@@ -2987,7 +2987,7 @@ tree.functionCall = function(env, currentFileInfo) {
|
|
|
2987
2987
|
tree.functionCall.prototype = tree.functions;
|
|
2988
2988
|
|
|
2989
2989
|
})(require('./tree'));
|
|
2990
|
-
|
|
2990
|
+
|
|
2991
2991
|
(function (tree) {
|
|
2992
2992
|
tree.colors = {
|
|
2993
2993
|
'aliceblue':'#f0f8ff',
|
|
@@ -3139,7 +3139,7 @@ tree.functionCall.prototype = tree.functions;
|
|
|
3139
3139
|
'yellowgreen':'#9acd32'
|
|
3140
3140
|
};
|
|
3141
3141
|
})(require('./tree'));
|
|
3142
|
-
|
|
3142
|
+
|
|
3143
3143
|
(function (tree) {
|
|
3144
3144
|
|
|
3145
3145
|
tree.debugInfo = function(env, ctx, lineSeperator) {
|
|
@@ -3237,7 +3237,7 @@ tree.outputRuleset = function (env, output, rules) {
|
|
|
3237
3237
|
};
|
|
3238
3238
|
|
|
3239
3239
|
})(require('./tree'));
|
|
3240
|
-
|
|
3240
|
+
|
|
3241
3241
|
(function (tree) {
|
|
3242
3242
|
|
|
3243
3243
|
tree.Alpha = function (val) {
|
|
@@ -3267,7 +3267,7 @@ tree.Alpha.prototype = {
|
|
|
3267
3267
|
};
|
|
3268
3268
|
|
|
3269
3269
|
})(require('../tree'));
|
|
3270
|
-
|
|
3270
|
+
|
|
3271
3271
|
(function (tree) {
|
|
3272
3272
|
|
|
3273
3273
|
tree.Anonymous = function (string, index, currentFileInfo, mapLines) {
|
|
@@ -3302,7 +3302,7 @@ tree.Anonymous.prototype = {
|
|
|
3302
3302
|
};
|
|
3303
3303
|
|
|
3304
3304
|
})(require('../tree'));
|
|
3305
|
-
|
|
3305
|
+
|
|
3306
3306
|
(function (tree) {
|
|
3307
3307
|
|
|
3308
3308
|
tree.Assignment = function (key, val) {
|
|
@@ -3332,7 +3332,7 @@ tree.Assignment.prototype = {
|
|
|
3332
3332
|
};
|
|
3333
3333
|
|
|
3334
3334
|
})(require('../tree'));
|
|
3335
|
-
|
|
3335
|
+
|
|
3336
3336
|
(function (tree) {
|
|
3337
3337
|
|
|
3338
3338
|
//
|
|
@@ -3404,7 +3404,7 @@ tree.Call.prototype = {
|
|
|
3404
3404
|
};
|
|
3405
3405
|
|
|
3406
3406
|
})(require('../tree'));
|
|
3407
|
-
|
|
3407
|
+
|
|
3408
3408
|
(function (tree) {
|
|
3409
3409
|
//
|
|
3410
3410
|
// RGB Colors - #ff0014, #eee
|
|
@@ -3594,7 +3594,7 @@ function clamp(v, max) {
|
|
|
3594
3594
|
}
|
|
3595
3595
|
|
|
3596
3596
|
})(require('../tree'));
|
|
3597
|
-
|
|
3597
|
+
|
|
3598
3598
|
(function (tree) {
|
|
3599
3599
|
|
|
3600
3600
|
tree.Comment = function (value, silent, index, currentFileInfo) {
|
|
@@ -3623,7 +3623,7 @@ tree.Comment.prototype = {
|
|
|
3623
3623
|
};
|
|
3624
3624
|
|
|
3625
3625
|
})(require('../tree'));
|
|
3626
|
-
|
|
3626
|
+
|
|
3627
3627
|
(function (tree) {
|
|
3628
3628
|
|
|
3629
3629
|
tree.Condition = function (op, l, r, i, negate) {
|
|
@@ -3673,7 +3673,7 @@ tree.Condition.prototype = {
|
|
|
3673
3673
|
};
|
|
3674
3674
|
|
|
3675
3675
|
})(require('../tree'));
|
|
3676
|
-
|
|
3676
|
+
|
|
3677
3677
|
(function (tree) {
|
|
3678
3678
|
|
|
3679
3679
|
tree.DetachedRuleset = function (ruleset, frames) {
|
|
@@ -3694,7 +3694,7 @@ tree.DetachedRuleset.prototype = {
|
|
|
3694
3694
|
}
|
|
3695
3695
|
};
|
|
3696
3696
|
})(require('../tree'));
|
|
3697
|
-
|
|
3697
|
+
|
|
3698
3698
|
(function (tree) {
|
|
3699
3699
|
|
|
3700
3700
|
//
|
|
@@ -4019,7 +4019,7 @@ tree.Unit.prototype = {
|
|
|
4019
4019
|
};
|
|
4020
4020
|
|
|
4021
4021
|
})(require('../tree'));
|
|
4022
|
-
|
|
4022
|
+
|
|
4023
4023
|
(function (tree) {
|
|
4024
4024
|
|
|
4025
4025
|
tree.Directive = function (name, value, rules, index, currentFileInfo, debugInfo) {
|
|
@@ -4089,7 +4089,7 @@ tree.Directive.prototype = {
|
|
|
4089
4089
|
};
|
|
4090
4090
|
|
|
4091
4091
|
})(require('../tree'));
|
|
4092
|
-
|
|
4092
|
+
|
|
4093
4093
|
(function (tree) {
|
|
4094
4094
|
|
|
4095
4095
|
tree.Element = function (combinator, value, index, currentFileInfo) {
|
|
@@ -4198,7 +4198,7 @@ tree.Combinator.prototype = {
|
|
|
4198
4198
|
};
|
|
4199
4199
|
|
|
4200
4200
|
})(require('../tree'));
|
|
4201
|
-
|
|
4201
|
+
|
|
4202
4202
|
(function (tree) {
|
|
4203
4203
|
|
|
4204
4204
|
tree.Expression = function (value) { this.value = value; };
|
|
@@ -4253,7 +4253,7 @@ tree.Expression.prototype = {
|
|
|
4253
4253
|
};
|
|
4254
4254
|
|
|
4255
4255
|
})(require('../tree'));
|
|
4256
|
-
|
|
4256
|
+
|
|
4257
4257
|
(function (tree) {
|
|
4258
4258
|
|
|
4259
4259
|
tree.Extend = function Extend(selector, option, index) {
|
|
@@ -4307,7 +4307,7 @@ tree.Extend.prototype = {
|
|
|
4307
4307
|
};
|
|
4308
4308
|
|
|
4309
4309
|
})(require('../tree'));
|
|
4310
|
-
|
|
4310
|
+
|
|
4311
4311
|
(function (tree) {
|
|
4312
4312
|
//
|
|
4313
4313
|
// CSS @import node
|
|
@@ -4432,7 +4432,7 @@ tree.Import.prototype = {
|
|
|
4432
4432
|
};
|
|
4433
4433
|
|
|
4434
4434
|
})(require('../tree'));
|
|
4435
|
-
|
|
4435
|
+
|
|
4436
4436
|
(function (tree) {
|
|
4437
4437
|
|
|
4438
4438
|
tree.JavaScript = function (string, index, escaped) {
|
|
@@ -4491,7 +4491,7 @@ tree.JavaScript.prototype = {
|
|
|
4491
4491
|
|
|
4492
4492
|
})(require('../tree'));
|
|
4493
4493
|
|
|
4494
|
-
|
|
4494
|
+
|
|
4495
4495
|
(function (tree) {
|
|
4496
4496
|
|
|
4497
4497
|
tree.Keyword = function (value) { this.value = value; };
|
|
@@ -4516,7 +4516,7 @@ tree.True = new(tree.Keyword)('true');
|
|
|
4516
4516
|
tree.False = new(tree.Keyword)('false');
|
|
4517
4517
|
|
|
4518
4518
|
})(require('../tree'));
|
|
4519
|
-
|
|
4519
|
+
|
|
4520
4520
|
(function (tree) {
|
|
4521
4521
|
|
|
4522
4522
|
tree.Media = function (value, features, index, currentFileInfo) {
|
|
@@ -4674,7 +4674,7 @@ tree.Media.prototype = {
|
|
|
4674
4674
|
};
|
|
4675
4675
|
|
|
4676
4676
|
})(require('../tree'));
|
|
4677
|
-
|
|
4677
|
+
|
|
4678
4678
|
(function (tree) {
|
|
4679
4679
|
|
|
4680
4680
|
tree.mixin = {};
|
|
@@ -4990,7 +4990,7 @@ tree.mixin.Definition.prototype = {
|
|
|
4990
4990
|
};
|
|
4991
4991
|
|
|
4992
4992
|
})(require('../tree'));
|
|
4993
|
-
|
|
4993
|
+
|
|
4994
4994
|
(function (tree) {
|
|
4995
4995
|
|
|
4996
4996
|
tree.Negative = function (node) {
|
|
@@ -5015,7 +5015,7 @@ tree.Negative.prototype = {
|
|
|
5015
5015
|
};
|
|
5016
5016
|
|
|
5017
5017
|
})(require('../tree'));
|
|
5018
|
-
|
|
5018
|
+
|
|
5019
5019
|
(function (tree) {
|
|
5020
5020
|
|
|
5021
5021
|
tree.Operation = function (op, operands, isSpaced) {
|
|
@@ -5073,7 +5073,7 @@ tree.operate = function (env, op, a, b) {
|
|
|
5073
5073
|
};
|
|
5074
5074
|
|
|
5075
5075
|
})(require('../tree'));
|
|
5076
|
-
|
|
5076
|
+
|
|
5077
5077
|
|
|
5078
5078
|
(function (tree) {
|
|
5079
5079
|
|
|
@@ -5097,7 +5097,7 @@ tree.Paren.prototype = {
|
|
|
5097
5097
|
};
|
|
5098
5098
|
|
|
5099
5099
|
})(require('../tree'));
|
|
5100
|
-
|
|
5100
|
+
|
|
5101
5101
|
(function (tree) {
|
|
5102
5102
|
|
|
5103
5103
|
tree.Quoted = function (str, content, escaped, index, currentFileInfo) {
|
|
@@ -5146,7 +5146,7 @@ tree.Quoted.prototype = {
|
|
|
5146
5146
|
};
|
|
5147
5147
|
|
|
5148
5148
|
})(require('../tree'));
|
|
5149
|
-
|
|
5149
|
+
|
|
5150
5150
|
(function (tree) {
|
|
5151
5151
|
|
|
5152
5152
|
tree.Rule = function (name, value, important, merge, index, currentFileInfo, inline) {
|
|
@@ -5237,7 +5237,7 @@ function evalName(env, name) {
|
|
|
5237
5237
|
}
|
|
5238
5238
|
|
|
5239
5239
|
})(require('../tree'));
|
|
5240
|
-
|
|
5240
|
+
|
|
5241
5241
|
(function (tree) {
|
|
5242
5242
|
|
|
5243
5243
|
tree.RulesetCall = function (variable) {
|
|
@@ -5254,7 +5254,7 @@ tree.RulesetCall.prototype = {
|
|
|
5254
5254
|
};
|
|
5255
5255
|
|
|
5256
5256
|
})(require('../tree'));
|
|
5257
|
-
|
|
5257
|
+
|
|
5258
5258
|
(function (tree) {
|
|
5259
5259
|
|
|
5260
5260
|
tree.Ruleset = function (selectors, rules, strictImports) {
|
|
@@ -5809,7 +5809,7 @@ tree.Ruleset.prototype = {
|
|
|
5809
5809
|
}
|
|
5810
5810
|
};
|
|
5811
5811
|
})(require('../tree'));
|
|
5812
|
-
|
|
5812
|
+
|
|
5813
5813
|
(function (tree) {
|
|
5814
5814
|
|
|
5815
5815
|
tree.Selector = function (elements, extendList, condition, index, currentFileInfo, isReferenced) {
|
|
@@ -5939,7 +5939,7 @@ tree.Selector.prototype = {
|
|
|
5939
5939
|
};
|
|
5940
5940
|
|
|
5941
5941
|
})(require('../tree'));
|
|
5942
|
-
|
|
5942
|
+
|
|
5943
5943
|
(function (tree) {
|
|
5944
5944
|
|
|
5945
5945
|
tree.UnicodeDescriptor = function (value) {
|
|
@@ -5955,7 +5955,7 @@ tree.UnicodeDescriptor.prototype = {
|
|
|
5955
5955
|
};
|
|
5956
5956
|
|
|
5957
5957
|
})(require('../tree'));
|
|
5958
|
-
|
|
5958
|
+
|
|
5959
5959
|
(function (tree) {
|
|
5960
5960
|
|
|
5961
5961
|
tree.URL = function (val, currentFileInfo, isEvald) {
|
|
@@ -6009,7 +6009,7 @@ tree.URL.prototype = {
|
|
|
6009
6009
|
};
|
|
6010
6010
|
|
|
6011
6011
|
})(require('../tree'));
|
|
6012
|
-
|
|
6012
|
+
|
|
6013
6013
|
(function (tree) {
|
|
6014
6014
|
|
|
6015
6015
|
tree.Value = function (value) {
|
|
@@ -6044,7 +6044,7 @@ tree.Value.prototype = {
|
|
|
6044
6044
|
};
|
|
6045
6045
|
|
|
6046
6046
|
})(require('../tree'));
|
|
6047
|
-
|
|
6047
|
+
|
|
6048
6048
|
(function (tree) {
|
|
6049
6049
|
|
|
6050
6050
|
tree.Variable = function (name, index, currentFileInfo) {
|
|
@@ -6089,7 +6089,7 @@ tree.Variable.prototype = {
|
|
|
6089
6089
|
};
|
|
6090
6090
|
|
|
6091
6091
|
})(require('../tree'));
|
|
6092
|
-
|
|
6092
|
+
|
|
6093
6093
|
(function (tree) {
|
|
6094
6094
|
|
|
6095
6095
|
var parseCopyProperties = [
|
|
@@ -6226,7 +6226,7 @@ tree.Variable.prototype = {
|
|
|
6226
6226
|
};
|
|
6227
6227
|
|
|
6228
6228
|
})(require('./tree'));
|
|
6229
|
-
|
|
6229
|
+
|
|
6230
6230
|
(function (tree) {
|
|
6231
6231
|
|
|
6232
6232
|
var _visitArgs = { visitDeeper: true },
|
|
@@ -6372,7 +6372,7 @@ tree.Variable.prototype = {
|
|
|
6372
6372
|
}
|
|
6373
6373
|
};
|
|
6374
6374
|
|
|
6375
|
-
})(require('./tree'));
|
|
6375
|
+
})(require('./tree'));
|
|
6376
6376
|
(function (tree) {
|
|
6377
6377
|
tree.importVisitor = function(importer, finish, evalEnv, onceFileDetectionMap, recursionDetector) {
|
|
6378
6378
|
this._visitor = new tree.visitor(this);
|
|
@@ -6514,7 +6514,7 @@ tree.Variable.prototype = {
|
|
|
6514
6514
|
}
|
|
6515
6515
|
};
|
|
6516
6516
|
|
|
6517
|
-
})(require('./tree'));
|
|
6517
|
+
})(require('./tree'));
|
|
6518
6518
|
(function (tree) {
|
|
6519
6519
|
tree.joinSelectorVisitor = function() {
|
|
6520
6520
|
this.contexts = [[]];
|
|
@@ -6558,7 +6558,7 @@ tree.Variable.prototype = {
|
|
|
6558
6558
|
}
|
|
6559
6559
|
};
|
|
6560
6560
|
|
|
6561
|
-
})(require('./tree'));
|
|
6561
|
+
})(require('./tree'));
|
|
6562
6562
|
(function (tree) {
|
|
6563
6563
|
tree.toCSSVisitor = function(env) {
|
|
6564
6564
|
this._visitor = new tree.visitor(this);
|
|
@@ -6798,7 +6798,7 @@ tree.Variable.prototype = {
|
|
|
6798
6798
|
}
|
|
6799
6799
|
};
|
|
6800
6800
|
|
|
6801
|
-
})(require('./tree'));
|
|
6801
|
+
})(require('./tree'));
|
|
6802
6802
|
(function (tree) {
|
|
6803
6803
|
/*jshint loopfunc:true */
|
|
6804
6804
|
|
|
@@ -7215,7 +7215,7 @@ tree.Variable.prototype = {
|
|
|
7215
7215
|
};
|
|
7216
7216
|
|
|
7217
7217
|
})(require('./tree'));
|
|
7218
|
-
|
|
7218
|
+
|
|
7219
7219
|
(function (tree) {
|
|
7220
7220
|
|
|
7221
7221
|
tree.sourceMapOutput = function (options) {
|
|
@@ -7357,11 +7357,11 @@ tree.Variable.prototype = {
|
|
|
7357
7357
|
};
|
|
7358
7358
|
|
|
7359
7359
|
})(require('./tree'));
|
|
7360
|
-
|
|
7360
|
+
|
|
7361
7361
|
// wraps the source-map code in a less module
|
|
7362
7362
|
(function() {
|
|
7363
7363
|
less.modules["source-map"] = function() {
|
|
7364
|
-
|
|
7364
|
+
|
|
7365
7365
|
/*
|
|
7366
7366
|
* Copyright 2011 Mozilla Foundation and contributors
|
|
7367
7367
|
* Licensed under the New BSD license. See LICENSE or:
|
|
@@ -9294,7 +9294,7 @@ this.sourceMap = {
|
|
|
9294
9294
|
SourceMapGenerator: require('source-map/source-map-generator').SourceMapGenerator,
|
|
9295
9295
|
SourceNode: require('source-map/source-node').SourceNode
|
|
9296
9296
|
};
|
|
9297
|
-
|
|
9297
|
+
|
|
9298
9298
|
// footer to wrap "source-map" module
|
|
9299
9299
|
return this.sourceMap;
|
|
9300
9300
|
}();
|