1 | 'use strict';
|
---|
2 |
|
---|
3 | var $SyntaxError = require('es-errors/syntax');
|
---|
4 |
|
---|
5 | var SLOT = require('internal-slot');
|
---|
6 |
|
---|
7 | // https://262.ecma-international.org/6.0/#sec-completion-record-specification-type
|
---|
8 |
|
---|
9 | var CompletionRecord = function CompletionRecord(type, value) {
|
---|
10 | if (!(this instanceof CompletionRecord)) {
|
---|
11 | return new CompletionRecord(type, value);
|
---|
12 | }
|
---|
13 | if (type !== 'normal' && type !== 'break' && type !== 'continue' && type !== 'return' && type !== 'throw') {
|
---|
14 | throw new $SyntaxError('Assertion failed: `type` must be one of "normal", "break", "continue", "return", or "throw"');
|
---|
15 | }
|
---|
16 | SLOT.set(this, '[[type]]', type);
|
---|
17 | SLOT.set(this, '[[value]]', value);
|
---|
18 | // [[target]] slot?
|
---|
19 | };
|
---|
20 |
|
---|
21 | CompletionRecord.prototype.type = function type() {
|
---|
22 | return SLOT.get(this, '[[type]]');
|
---|
23 | };
|
---|
24 |
|
---|
25 | CompletionRecord.prototype.value = function value() {
|
---|
26 | return SLOT.get(this, '[[value]]');
|
---|
27 | };
|
---|
28 |
|
---|
29 | CompletionRecord.prototype['?'] = function ReturnIfAbrupt() {
|
---|
30 | var type = SLOT.get(this, '[[type]]');
|
---|
31 | var value = SLOT.get(this, '[[value]]');
|
---|
32 |
|
---|
33 | if (type === 'normal') {
|
---|
34 | return value;
|
---|
35 | }
|
---|
36 | if (type === 'throw') {
|
---|
37 | throw value;
|
---|
38 | }
|
---|
39 | throw new $SyntaxError('Completion Record is not of type "normal" or "throw": other types not supported');
|
---|
40 | };
|
---|
41 |
|
---|
42 | CompletionRecord.prototype['!'] = function assert() {
|
---|
43 | var type = SLOT.get(this, '[[type]]');
|
---|
44 |
|
---|
45 | if (type !== 'normal') {
|
---|
46 | throw new $SyntaxError('Assertion failed: Completion Record is not of type "normal"');
|
---|
47 | }
|
---|
48 | return SLOT.get(this, '[[value]]');
|
---|
49 | };
|
---|
50 |
|
---|
51 | module.exports = CompletionRecord;
|
---|