diff options
Diffstat (limited to 'ext/web/08_text_encoding.js')
-rw-r--r-- | ext/web/08_text_encoding.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/web/08_text_encoding.js b/ext/web/08_text_encoding.js index e7e535f90..45dbad538 100644 --- a/ext/web/08_text_encoding.js +++ b/ext/web/08_text_encoding.js @@ -192,7 +192,7 @@ class TextDecoder { } } -webidl.configurePrototype(TextDecoder); +webidl.configureInterface(TextDecoder); const TextDecoderPrototype = TextDecoder.prototype; class TextEncoder { @@ -251,7 +251,7 @@ class TextEncoder { const encodeIntoBuf = new Uint32Array(2); -webidl.configurePrototype(TextEncoder); +webidl.configureInterface(TextEncoder); const TextEncoderPrototype = TextEncoder.prototype; class TextDecoderStream { @@ -336,7 +336,7 @@ class TextDecoderStream { } } -webidl.configurePrototype(TextDecoderStream); +webidl.configureInterface(TextDecoderStream); const TextDecoderStreamPrototype = TextDecoderStream.prototype; class TextEncoderStream { @@ -409,7 +409,7 @@ class TextEncoderStream { } } -webidl.configurePrototype(TextEncoderStream); +webidl.configureInterface(TextEncoderStream); const TextEncoderStreamPrototype = TextEncoderStream.prototype; webidl.converters.TextDecoderOptions = webidl.createDictionaryConverter( |