We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c528a commit 8d081eaCopy full SHA for 8d081ea
modules/angular2/src/facade/lang.ts
@@ -11,7 +11,7 @@ export class BaseException extends Error {
11
constructor(message?: string) {
12
super(message);
13
this.message = message;
14
- this.stack = (<any>new Error()).stack;
+ this.stack = (<any>new Error(message)).stack;
15
}
16
17
toString(): string { return this.message; }
modules/angular2/test/change_detection/parser/parser_spec.ts
@@ -471,7 +471,7 @@ export function main() {
471
expect(bindings).toEqual([]);
472
});
473
474
- it('should parse a string without a value', () => {
+ iit('should parse a string without a value', () => {
475
var bindings = parseTemplateBindings('a');
476
expect(keys(bindings)).toEqual(['a']);
477
0 commit comments