鍍金池/ 問答/HTML/ 《JavaScript語言精粹》這書里有個例子沒看懂啊

《JavaScript語言精粹》這書里有個例子沒看懂啊

var block = function ( ) {
  // Remember the current scope. Make a new scope that
  // includes everything from the current one.
  var oldScope = scope;
  scope = Object.create(scope);
  // Advance past the left curly brace.
  advance('{');
  // Parse using the new scope.
  parse(scope);
  // Advance past the right curly brace and discard the
  // new scope, restoring the old one.
  advance('}');
  scope = oldScope;
};

里面的advance()是什么?pdf里面沒有搜索到定義

回答
編輯回答
吃藕丑

你下的是數(shù)字版的還是掃描版的pdf啊.

2018年2月25日 06:24
編輯回答
心上人

看看上下文 這個肯定是定義的方法

2018年8月16日 13:32