⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fcl-driver.cc

📁 parse fuzzy contrl language file
💻 CC
字号:
#line 7372 "../../doc/bison.texinfo"#include "fcl-driver.hh"#include "fcl-parser.hh"fcl_driver::fcl_driver ()  : trace_scanning (false), trace_parsing (false){  variables["one"] = 1;  variables["two"] = 2;}fcl_driver::~fcl_driver (){}voidfcl_driver::parse (const std::string &f){  file = f;  scan_begin ();  yy::fcl_parser parser (*this);  parser.set_debug_level (trace_parsing);  parser.parse ();  scan_end ();}voidfcl_driver::error (const yy::location& l, const std::string& m){  std::cerr << l << ": " << m << std::endl;}voidfcl_driver::error (const std::string& m){  std::cerr << m << std::endl;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -