Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

重学js —— 键集合之Set对象 #128

Open
lizhongzhen11 opened this issue Jul 4, 2020 · 0 comments
Open

重学js —— 键集合之Set对象 #128

lizhongzhen11 opened this issue Jul 4, 2020 · 0 comments
Labels
js基础 Good for newcomers 重学js 重学js系列 规范+MDN

Comments

@lizhongzhen11
Copy link
Owner

lizhongzhen11 commented Jul 4, 2020

Set 对象

构造器

  • 即固有对象 %Set%
  • 全局对象 "Set" 属性的初始值
  • ...

Set ( [ iterable ] )

  1. 如果 NewTargetundefined,抛 TypeError 异常
  2. 定义 set? OrdinaryCreateFromConstructor(NewTarget, "%Set.prototype%", « [[SetData]] »)
  3. set.[[SetData]] 设置为新的空 List
  4. 如果 iterableundefinednull,返回 set
  5. 定义 adder? Get(set, "add")
  6. 如果 adder 不可调用,抛 TypeError 异常
  7. 定义 iteratorRecord? GetIterator(iterable)
  8. 重复,
    1. 定义 next ? IteratorStep(iteratorRecord)
    2. 如果 nextfalse,返回 set
    3. 定义 nextValue? IteratorValue(iteratorRecord)
    4. 定义 statusCall(adder, set, « nextValue »)
    5. 如果 statusabrupt completion,返回 ? IteratorClose(iteratorRecord, status)

构造器属性

原型对象属性

  • 即固有对象 %SetPrototype%
  • [[Prototype]] 内置插槽其值为 %Object.prototype%
  • 属于 普通对象
  • 没有 [[SetData]] 内置插槽

Set.prototype.add ( value )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[SetData]])
  3. 定义 entriesListS.[[SetData]]
  4. 遍历 entries 中的每个元素 e
    1. 如果 e 不为空且 SameValueZero(e, value) 为 true
      1. 返回 S
  5. 如果 value-0,将 value 设置为 +0
  6. value 添加到 entries 尾部
  7. 返回 S

Set.prototype.clear ( )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[SetData]])
  3. 定义 entriesListS.[[SetData]]
  4. 遍历 entries 中的每个元素 e
    1. 用值为 empty 的元素代替 entries 中值为 e 的元素
  5. 返回 undefined

Set.prototype.delete ( value )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[SetData]])
  3. 定义 entriesListS.[[SetData]]
  4. 遍历 entries 中的每个元素 e
    1. 如果 e 不为空且 SameValueZero(e, value) 为 true
      1. 用值为 empty 的元素代替 entries 中值为 e 的元素
      2. 返回 true
  5. 返回 false

Set.prototype.entries ( )

  1. 定义 Sthis
  2. 返回 ? CreateSetIterator(S, key+value)

Set.prototype.forEach ( callbackfn [ , thisArg ] )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[SetData]])
  3. 如果 callbackfn 不可调用,抛 TypeError 异常
  4. 定义 entriesListS.[[SetData]]
  5. 遍历 entries 中的每个元素 e,按原先插入的顺序,
    1. 如果 e 不为空
      1. 执行 ? Call(callbackfn, thisArg, « e, e, S »)
  6. 返回 undefined

Set.prototype.has ( value )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[SetData]])
  3. 定义 entriesListS.[[SetData]]
  4. 遍历 entries 中的每个元素 e,按原先插入的顺序,
    1. 如果 e 不为空且 SameValueZero(e, value) 为 true,返回 true
  5. 返回 false

get Set.prototype.size

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[SetData]])
  3. 定义 entriesListS.[[SetData]]
  4. 定义 count 为 0
  5. 遍历 entries 中的每个元素 e
    1. 如果 e 不为空,将 count 设置为 count + 1
  6. 返回 count

Set.prototype.values ( )

  1. 定义 Sthis
  2. 返回 ? CreateSetIterator(S, value)

Set Iterator Objects

CreateSetIterator ( set, kind )

  1. 执行 ? RequireInternalSlot(set, [[SetData]])
  2. 定义 iteratorOrdinaryObjectCreate(%SetIteratorPrototype%, « [[IteratedSet]], [[SetNextIndex]], [[SetIterationKind]] »)
  3. iterator.[[IteratedSet]] 设置为 set
  4. iterator.[[SetNextIndex]] 设置为 0
  5. iterator.[[SetIterationKind]] 设置为 kind
  6. 返回 iterator

%SetIteratorPrototype%

@lizhongzhen11 lizhongzhen11 added js基础 Good for newcomers 重学js 重学js系列 规范+MDN labels Jul 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
js基础 Good for newcomers 重学js 重学js系列 规范+MDN
Projects
None yet
Development

No branches or pull requests

1 participant