本文整理汇总了C++中tokenizer::is_peek_char方法的典型用法代码示例。如果您正苦于以下问题:C++ tokenizer::is_peek_char方法的具体用法?C++ tokenizer::is_peek_char怎么用?C++ tokenizer::is_peek_char使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tokenizer
的用法示例。
在下文中一共展示了tokenizer::is_peek_char方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
inline unique_ptr<statement>create_statement_from_tokenizer(const statement&parent,tokenizer&t){
auto tk=t.next_token();
if(tk.is_name("#"))return make_unique<stmt_comment>(parent,move(tk),t);// ie print("hello") // comment
if(t.is_peek_char('('))return create_call_statement_from_tokenizer(parent,move(tk),t); // ie f(...)
return make_unique<statement>(parent,move(tk));// ie 0x80
}