Skip to content

Commit

Permalink
remove irrelevant comment
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed May 21, 2021
1 parent 0b1d581 commit d1c3ed0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/babel-parser/src/tokenizer/context.js
Expand Up @@ -7,11 +7,7 @@
import { types as tt } from "./types";

export class TokContext {
constructor(
token: string,
isExpr?: boolean,
preserveSpace?: boolean, // Takes a Tokenizer as a this-parameter, and returns void.
) {
constructor(token: string, isExpr?: boolean, preserveSpace?: boolean) {
this.token = token;
this.isExpr = !!isExpr;
this.preserveSpace = !!preserveSpace;
Expand Down

0 comments on commit d1c3ed0

Please sign in to comment.