[d565449] | 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/7.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;
|
---|