浏览代码

Removed stray console.log() command.

master
Bryan Miller 5 年前
父节点
当前提交
e8c246247f
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. +0
    -1
      src/compiler/tokenizer.js

+ 0
- 1
src/compiler/tokenizer.js 查看文件

var escaped = false; var escaped = false;
var line = this.__stream.line(); var line = this.__stream.line();
var col = this.__stream.col(); var col = this.__stream.col();
console.log(line);
this.__stream.next(); this.__stream.next();
while (!this.__stream.eof()){ while (!this.__stream.eof()){
let c = this.__stream.next(); let c = this.__stream.next();

正在加载...
取消
保存