Skip to content

Commit

Permalink
Fixed the Immutable descriptor attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
otac0n committed Jul 9, 2011
1 parent cf8343a commit beaf67d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/IronJS.Runtime/DescriptorAttrs.cs
Expand Up @@ -8,7 +8,7 @@ public static class DescriptorAttrs
public const ushort ReadOnly = 1;
public const ushort DontEnum = 2;
public const ushort DontDelete = 4;
public const ushort DontEnumOrDelete = 2 | 4;
public const ushort Immutable = 1 | 2 | 3;
public const ushort DontEnumOrDelete = DontEnum | DontDelete;
public const ushort Immutable = ReadOnly | DontEnum | DontDelete;
}
}

0 comments on commit beaf67d

Please sign in to comment.