We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 827841e commit 4eb8c9bCopy full SHA for 4eb8c9b
modules/angular2/src/change_detection/parser/locals.ts
@@ -35,7 +35,8 @@ export class Locals {
35
if (MapWrapper.contains(this.current, name)) {
36
MapWrapper.set(this.current, name, value);
37
} else {
38
- throw new BaseException('Setting of new keys post-construction is not supported.');
+ throw new BaseException(
39
+ `Setting of new keys post-construction is not supported. Key: ${name}.`);
40
}
41
42
0 commit comments