summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/pacote/node_modules/protoduck/node_modules/genfun/lib/role.js
blob: 69e35c2e585cb7900a551ba768ea009ceed55e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict'

/*
 * Role
 *
 * A Role encapsulates a particular object's 'role' in a method's
 * dispatch. They are added directly to the selector for a method, and thus
 * do not prevent the objects a method was defined on from being garbage
 * collected.
 */
module.exports = Role
function Role (method, position) {
  this.method = method
  this.position = position
}

Role.roleKeyName = Symbol('roles')