Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Ignore unserializable objects
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage committed May 9, 2017
1 parent b548ce1 commit a9c288a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/serializer/serializer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1067,8 +1067,8 @@ export class Serializer {
case "WeakSet":
return this._serializeValueSet(name, val, reasons);
default:
if (kind !== "Object")
this.logger.logError(val, `Serialization of an object of kind ${kind} is not supported.`);
// if (kind !== "Object")
// this.logger.logError(val, `Serialization of an object of kind ${kind} is not supported.`);
if (this.$ParameterMap !== undefined)
this.logger.logError(val, `Serialization of an arguments object is not supported.`);

Expand Down

0 comments on commit a9c288a

Please sign in to comment.