`third_party/node/node_modules` is generated by `./mach vendor node`. Differential Revision: https://phabricator.services.mozilla.com/D320322
32 lines
882 B
JavaScript
32 lines
882 B
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
/** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext<[string, string]>} ObjectDeserializerContext */
|
|
/** @typedef {import("./ObjectMiddleware").ObjectSerializerContext<[string, string]>} ObjectSerializerContext */
|
|
|
|
class RegExpObjectSerializer {
|
|
/**
|
|
* Serializes this instance into the provided serializer context.
|
|
* @param {RegExp} obj regexp
|
|
* @param {ObjectSerializerContext} context context
|
|
*/
|
|
serialize(obj, context) {
|
|
context.write(obj.source);
|
|
context.write(obj.flags);
|
|
}
|
|
|
|
/**
|
|
* Restores this instance from the provided deserializer context.
|
|
* @param {ObjectDeserializerContext} context context
|
|
* @returns {RegExp} regexp
|
|
*/
|
|
deserialize(context) {
|
|
return new RegExp(context.read(), context.read());
|
|
}
|
|
}
|
|
|
|
module.exports = RegExpObjectSerializer;
|