Move building single-file JS to use a JSON file with initial priority files

This commit is contained in:
Davis W. Frank
2011-06-05 21:55:32 -07:00
parent e88d88e427
commit 12f56787b0
3 changed files with 15 additions and 4 deletions

View File

@@ -99,7 +99,7 @@ jasmine.ExpectationResult = function(params) {
this.actual = params.actual;
this.message = this.passed_ ? 'Passed.' : params.message;
var trace = params.trace || new Error(this.message);
var trace = (params.trace || new Error(this.message));
this.trace = this.passed_ ? '' : trace;
};
@@ -2468,5 +2468,5 @@ jasmine.version_= {
"major": 1,
"minor": 1,
"build": 0,
"revision": 1307334045
"revision": 1307335480
};