Changelog

tc39/ecma262 · · 3 commits

Spec editorial cleanup around typed arrays

Editorial pass renames alias variables and aligns typed array algorithms with dedicated element access helpers.

TypedArray algorithms now use element-specific helpers (linusg84dd63d)

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 (linusg52e8f5b)

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 (linusgb7865f0)