HomeSort by relevance Sort by last modified time
    Searched refs:PropertyKind (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
preparser.h 528 enum PropertyKind {
546 void CheckProperty(Token::Value property, PropertyKind type, bool* ok);
553 bool HasConflict(PropertyKind type1, PropertyKind type2) {
556 bool IsDataDataConflict(PropertyKind type1, PropertyKind type2) {
559 bool IsDataAccessorConflict(PropertyKind type1, PropertyKind type2) {
562 bool IsAccessorAccessorConflict(PropertyKind type1, PropertyKind type2)
    [all...]
mirror-debugger.js 172 var PropertyKind = {};
173 PropertyKind.Named = 1;
174 PropertyKind.Indexed = 2;
719 kind = kind || PropertyKind.Named | PropertyKind.Indexed;
726 if (kind & PropertyKind.Named) {
731 if (this.hasNamedInterceptor() && (kind & PropertyKind.Named)) {
742 if (kind & PropertyKind.Indexed) {
748 if (this.hasIndexedInterceptor() && (kind & PropertyKind.Indexed)) {
763 if (kind & PropertyKind.Named)
    [all...]

Completed in 512 milliseconds