fd75748c by Michael Richards

Don't commit changes in dist/ before release/build commits.

1 parent 7f3e7d58
...@@ -637,14 +637,14 @@ ...@@ -637,14 +637,14 @@
637 function KeypathParser() {} 637 function KeypathParser() {}
638 638
639 KeypathParser.parse = function(keypath, interfaces, root) { 639 KeypathParser.parse = function(keypath, interfaces, root) {
640 var char, current, tokens, _i, _len; 640 var char, current, index, tokens;
641 tokens = []; 641 tokens = [];
642 current = { 642 current = {
643 "interface": root, 643 "interface": root,
644 path: '' 644 path: ''
645 }; 645 };
646 for (_i = 0, _len = keypath.length; _i < _len; _i++) { 646 for (index in keypath) {
647 char = keypath[_i]; 647 char = keypath[index];
648 if (__indexOf.call(interfaces, char) >= 0) { 648 if (__indexOf.call(interfaces, char) >= 0) {
649 tokens.push(current); 649 tokens.push(current);
650 current = { 650 current = {
......