Home | History | Annotate | Download | only in Statements

Lines Matching refs:property

6  *  Verify that the property name is assigned to the property on the left
46 for ( property in object ) {
49 "with loop in a for...in loop. ("+object+")["+property +"] == "+
50 "eval ( " + property +" )",
52 object[property] == eval(property) );
62 for ( property in object ) {
66 "with loop in a for...in loop. ("+object+")["+property +"] == "+
67 "eval ( " + property +" )",
69 object[property] == eval(property) );