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 —— 键集合之WeakMap对象和WeakSet对象 #129

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

重学js —— 键集合之WeakMap对象和WeakSet对象 #129

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

Comments

@lizhongzhen11
Copy link
Owner

lizhongzhen11 commented Jul 6, 2020

WeakMap对象

  • MDN
  • 键必须是对象
  • key不可枚举

WeakMap 构造器

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

WeakMap ( [ iterable ] )

  1. 如果 NewTargetundefined,抛 TypeError 异常
  2. 定义 map? OrdinaryCreateFromConstructor(NewTarget, "%WeakMap.prototype%", « [[WeakMapData]] »)
  3. map.[[WeakMapData]] 设置为新的空 List
  4. 如果 iterableundefinednull,返回 map
  5. 定义 adder? Get(map, "set")
  6. 返回 ? AddEntriesFromIterable(map, iterable, adder)

WeakMap 原型对象上的属性

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

WeakMap.prototype.delete ( key )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[WeakMapData]])
  3. 定义 entriesListM.[[WeakMapData]]
  4. 如果 key 不是对象,返回 false
  5. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不是 emptySameValue(p.[[Key]], key) 为 true
      1. p.[[Key]] 设置为 empty
      2. p.[[Value]] 设置为 empty
      3. 返回 true
  6. 返回 false

WeakMap.prototype.get ( key )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[WeakMapData]])
  3. 定义 entriesListM.[[WeakMapData]]
  4. 如果 key 不是对象,返回 undefined
  5. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不是 emptySameValue(p.[[Key]], key) 为 true,返回 p.[[Value]]
  6. 返回 undefined

WeakMap.prototype.has ( key )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[WeakMapData]])
  3. 定义 entriesListM.[[WeakMapData]]
  4. 如果 key 不是对象,返回 false
  5. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不为 emptySameValue(p.[[Key]], key) 为 true,返回 true
  6. 返回 false

WeakMap.prototype.set ( key, value )

  1. 定义 Mthis
  2. 执行 ? RequireInternalSlot(M, [[WeakMapData]])
  3. 定义 entriesListM.[[WeakMapData]]
  4. 如果 key 不是对象,抛 TypeError 异常
  5. 遍历 entries 中的每个元素 Record{ [[Key]], [[Value]] } p
    1. 如果 p.[[Key]] 不为 emptySameValue(p.[[Key]], key) 为 true
      1. p.[[Value]] 设置为 value
      2. 返回 M
  6. 定义 pRecord{ [[Key]]: key, [[Value]]: value }
  7. p 加到 entries 尾部
  8. 返回 M

WeakSet 对象

WeakSet 构造器

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

WeakSet ( [ iterable ] )

  1. 如果 NewTargetundefined,抛 TypeError 异常
  2. 定义 set? OrdinaryCreateFromConstructor(NewTarget, "%WeakSet.prototype%", « [[WeakSetData]] »)
  3. set.[[WeakSetData]] 设置为新的空 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(next)
    4. 定义 statusCall(adder, set, « nextValue »)
    5. 如果 statusabrupt completion,返回 ? IteratorClose(iteratorRecord, status)

WeakSet 原型对象属性

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

WeakSet.prototype.add ( value )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[WeakSetData]])
  3. 如果 value 不是对象,抛 TypeError 异常
  4. 定义 entriesListS.[[WeakSetData]]
  5. 遍历 entries 中的每个元素 e
    1. 如果 e 不是 emptySameValue(e, value) 为 true
      1. 返回 S
  6. value 添加到 entries 末尾
  7. 返回 S

WeakSet.prototype.delete ( value )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[WeakSetData]])
  3. 如果 value 不是对象,返回 false
  4. 定义 entriesListS.[[WeakSetData]]
  5. 遍历 entries 中的每个元素 e
    1. 如果 e 不是 emptySameValue(e, value) 为 true
      1. 用值为 empty 的元素替换 entries 中值为 e 的元素
      2. 返回 true
  6. 返回 false

WeakSet.prototype.has ( value )

  1. 定义 Sthis
  2. 执行 ? RequireInternalSlot(S, [[WeakSetData]])
  3. 定义 entriesListS.[[WeakSetData]]
  4. 如果 value 不是对象,返回 false
  5. 遍历 entries 中的每个元素 e
    1. 如果 e 不是 emptySameValue(e, value) 为 true,返回 true
  6. 返回 false
@lizhongzhen11 lizhongzhen11 added js基础 Good for newcomers 重学js 重学js系列 规范+MDN labels Jul 6, 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