TypedArray algorithms now use element-specific helpers (
84dd63d)
Several typed array abstract operations were rewritten to use TypedArrayGetElement and TypedArraySetElement instead of generic Get/Set on stringified indices. This tightens the spec language around indexed element access and better reflects typed array semantics.
Alias-name cleanup across binding and property algorithms (
52e8f5b)
This editorial sweep standardizes several internal variable names for readability, including replacing short _v_/_bindingId_ style names with clearer _value_/_name_ forms and renaming a configurable-flag helper. It also updates a few identifier naming terms in the spec text, without changing behavior.
Other misc changes
- Editorial wording fix: “timezone” → “time zone” in date/time formatting text (
b7865f0)