summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjeremyfa <jeremy.faivre@gmail.com>2015-04-29 14:05:38 +0200
committerjeremyfa <jeremy.faivre@gmail.com>2015-04-29 14:05:38 +0200
commit4f0e0007d1381d4c1a249c3854f9bc7bcb9d6525 (patch)
tree7af0478064789499dc597e50981b436e64773a28 /lib
parent6fcc8c8cf0275ba087bcca58b56123109c59330c (diff)
downloadyamljs-4f0e0007d1381d4c1a249c3854f9bc7bcb9d6525.tar.gz
Fix #33
Diffstat (limited to 'lib')
-rw-r--r--lib/Dumper.js2
-rw-r--r--lib/Escaper.js2
-rw-r--r--lib/Exception/DumpException.js2
-rw-r--r--lib/Exception/ParseException.js2
-rw-r--r--lib/Inline.js6
-rw-r--r--lib/Parser.js2
-rw-r--r--lib/Pattern.js2
-rw-r--r--lib/Unescaper.js2
-rw-r--r--lib/Utils.js2
-rw-r--r--lib/Yaml.js2
10 files changed, 12 insertions, 12 deletions
diff --git a/lib/Dumper.js b/lib/Dumper.js
index 843587d..9192a19 100644
--- a/lib/Dumper.js
+++ b/lib/Dumper.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Dumper, Inline, Utils;
Utils = require('./Utils');
diff --git a/lib/Escaper.js b/lib/Escaper.js
index d8e21bf..1d6936e 100644
--- a/lib/Escaper.js
+++ b/lib/Escaper.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Escaper, Pattern;
Pattern = require('./Pattern');
diff --git a/lib/Exception/DumpException.js b/lib/Exception/DumpException.js
index e75aa99..5d83338 100644
--- a/lib/Exception/DumpException.js
+++ b/lib/Exception/DumpException.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var DumpException,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
diff --git a/lib/Exception/ParseException.js b/lib/Exception/ParseException.js
index 2fa9186..986517c 100644
--- a/lib/Exception/ParseException.js
+++ b/lib/Exception/ParseException.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var ParseException,
__hasProp = {}.hasOwnProperty,
__extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
diff --git a/lib/Inline.js b/lib/Inline.js
index 84efcec..01f25cf 100644
--- a/lib/Inline.js
+++ b/lib/Inline.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var DumpException, Escaper, Inline, ParseException, Pattern, Unescaper, Utils,
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
@@ -276,7 +276,7 @@ Inline = (function() {
};
Inline.parseMapping = function(mapping, context) {
- var $value, done, i, key, len, output, shouldContinueWhileLoop, value;
+ var done, i, key, len, output, shouldContinueWhileLoop, value;
output = {};
len = mapping.length;
i = context.i;
@@ -314,7 +314,7 @@ Inline = (function() {
done = true;
break;
case '{':
- $value = this.parseMapping(mapping, context);
+ value = this.parseMapping(mapping, context);
i = context.i;
if (output[key] === void 0) {
output[key] = value;
diff --git a/lib/Parser.js b/lib/Parser.js
index be4e263..00d544f 100644
--- a/lib/Parser.js
+++ b/lib/Parser.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Inline, ParseException, Parser, Pattern, Utils;
Inline = require('./Inline');
diff --git a/lib/Pattern.js b/lib/Pattern.js
index 1ef2f3d..c67a1a5 100644
--- a/lib/Pattern.js
+++ b/lib/Pattern.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Pattern;
Pattern = (function() {
diff --git a/lib/Unescaper.js b/lib/Unescaper.js
index 20c700c..f6abf36 100644
--- a/lib/Unescaper.js
+++ b/lib/Unescaper.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Pattern, Unescaper, Utils;
Utils = require('./Utils');
diff --git a/lib/Utils.js b/lib/Utils.js
index 30a1023..35642ce 100644
--- a/lib/Utils.js
+++ b/lib/Utils.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Pattern, Utils;
Pattern = require('./Pattern');
diff --git a/lib/Yaml.js b/lib/Yaml.js
index 67bd634..bf96d59 100644
--- a/lib/Yaml.js
+++ b/lib/Yaml.js
@@ -1,4 +1,4 @@
-// Generated by CoffeeScript 1.7.1
+// Generated by CoffeeScript 1.8.0
var Dumper, Parser, Utils, Yaml;
Parser = require('./Parser');