hotspot/src/share/vm/runtime/signature.cpp
void SignatureIterator::expect(char c) {
{- -------------------------------------------
(1) 予想と外れていたら fatal().
逆に予想が合っていたら, _index をその分だけ (= 1文字だけ) 進めておく.
---------------------------------------- -}
if (_signature->byte_at(_index) != c) fatal(err_msg("expecting %c", c));
_index++;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.