Subversion Repositories Applications.framework

Rev

Rev 5 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
var x = 'My ' + 'string';
2
var x = 'My ' + 1234;
3
var x = 'My ' + y + ' test';
4
 
5
this.errors['test'] = x;
6
this.errors['test' + 10] = x;
7
this.errors['test' + y] = x;
8
this.errors['test' + 'blah'] = x;
9
this.errors[y] = x;
10
this.errors[y + z] = x;
11
this.errors[y + z + 'My' + 'String'] = x;