From 555c7898c8afa7318e8e8074b84d01d950146b3c Mon Sep 17 00:00:00 2001 From: Ingvar Stepanyan Date: Thu, 22 Jan 2015 18:21:38 +0200 Subject: [PATCH] Remove Token::{startLoc,endLoc} so they don't appear in next release. --- acorn.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/acorn.js b/acorn.js index 10cac96e47..f4b1534bac 100644 --- a/acorn.js +++ b/acorn.js @@ -200,9 +200,6 @@ if (options.locations) { this.loc = new SourceLocation(); this.loc.end = tokEndLoc; - // TODO: remove in next major release - this.startLoc = tokStartLoc; - this.endLoc = tokEndLoc; } if (options.ranges) this.range = [tokStart, tokEnd];