add not one Object.seal()

This commit is contained in:
Dan Wolff 2018-02-05 21:24:20 +01:00
parent 48ce5b09d2
commit b3128f0b6d

View File

@ -1115,5 +1115,5 @@ To allow for better optimizations, the compiler makes various assumptions.
- Getting and setting properties on a plain object does not cause other side effects
(using `.watch()` or `Proxy`).
- Object properties are able to be added (not prevented with
`Object.defineProperty()`, `Object.defineProperties()`, `Object.freeze()` or
`Object.preventExtensions()`).
`Object.defineProperty()`, `Object.defineProperties()`, `Object.freeze()`,
`Object.preventExtensions()` or `Object.seal()`).