This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/nodes/literal.js b/lib/nodes/literal.js | |
index 314329c..84583e7 100644 | |
--- a/lib/nodes/literal.js | |
+++ b/lib/nodes/literal.js | |
@@ -23,6 +23,7 @@ var Literal = module.exports = function Literal(str){ | |
Node.call(this); | |
this.val = str; | |
this.string = str; | |
+ this.prefixed = false; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/lib/lexer.js b/lib/lexer.js | |
index a9e016a..01a14a1 100644 | |
--- a/lib/lexer.js | |
+++ b/lib/lexer.js | |
@@ -486,14 +486,14 @@ Lexer.prototype = { | |
}, | |
/** | |
- * '@extends' ([^{\n]+) | |
+ * '@extends' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Person = Em.Object.extend({ | |
firstName: '', | |
lastName: '', | |
sayHello: function() { | |
alert('Hello!'); | |
} | |
}); | |
var person = Person.create({ | |
firstName: 'Mikhail', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// main_page.js | |
tasksList: SC.ScrollView.design({ | |
layout: { top: 30, bottom: 0, left: 0, width: 299 }, | |
hasHorizontalScroller: NO, | |
contentView: SC.ListView.design({ | |
contentBinding: 'MyApp.tasksController.arrangedObjects', | |
selectionBinding: 'MyApp.tasksController.selection', | |
rowHeight: 29, |
NewerOlder