Home | History | Annotate | Download | only in src

Lines Matching refs:PropertyAttribute

186 var PropertyAttribute = {};
187 PropertyAttribute.None = NONE;
188 PropertyAttribute.ReadOnly = READ_ONLY;
189 PropertyAttribute.DontEnum = DONT_ENUM;
190 PropertyAttribute.DontDelete = DONT_DELETE;
1452 return (this.attributes() & PropertyAttribute.ReadOnly) != 0;
1457 return (this.attributes() & PropertyAttribute.DontEnum) == 0;
1462 return (this.attributes() & PropertyAttribute.DontDelete) == 0;
2836 * If the attribute for the property is PropertyAttribute.None it is not added.
2854 if (propertyMirror.attributes() != PropertyAttribute.None) {