From: Chris Jones Date: Sun, 10 Jul 2011 06:38:04 +0000 (-0700) Subject: set up dummy functions for NYIs X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=03212b3cc0d5f80826fbb2ac4a76ca9a7560edc9;p=pdf.js.git set up dummy functions for NYIs --- diff --git a/pdf.js b/pdf.js index a40adbe..c9a3d0c 100644 --- a/pdf.js +++ b/pdf.js @@ -5299,13 +5299,16 @@ var PDFFunction = (function() { return array; }, constructInterpolated: function() { - error('unhandled type of function'); + TODO('unhandled type of function'); + this.func = function () { return [ 255, 105, 180 ]; } }, constructStiched: function() { - error('unhandled type of function'); + TODO('unhandled type of function'); + this.func = function () { return [ 255, 105, 180 ]; } }, constructPostScript: function() { - error('unhandled type of function'); + TODO('unhandled type of function'); + this.func = function () { return [ 255, 105, 180 ]; } } };