From 9ddb4eca95941dfdc4c8e00f002695648e6f783f Mon Sep 17 00:00:00 2001 From: Jon Buckley Date: Thu, 31 Jan 2013 18:32:01 -0500 Subject: [PATCH] Issue #2008 - Fix lint errors for src/function.js --- src/function.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/function.js b/src/function.js index 8442d4e21..6d4627e99 100644 --- a/src/function.js +++ b/src/function.js @@ -1,5 +1,6 @@ /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */ +/* globals EOF, error, isArray, isBool, Lexer, TODO */ /* Copyright 2012 Mozilla Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -80,7 +81,7 @@ var PDFFunction = (function PDFFunctionClosure() { return this.constructInterpolatedFromIR(IR); case CONSTRUCT_STICHED: return this.constructStichedFromIR(IR); - case CONSTRUCT_POSTSCRIPT: + //case CONSTRUCT_POSTSCRIPT: default: return this.constructPostScriptFromIR(IR); } @@ -233,7 +234,7 @@ var PDFFunction = (function PDFFunctionClosure() { } return y; - } + }; }, constructInterpolated: function PDFFunction_constructInterpolated(str, @@ -270,7 +271,7 @@ var PDFFunction = (function PDFFunctionClosure() { return out; - } + }; }, constructStiched: function PDFFunction_constructStiched(fn, dict, xref) {