Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在研究编译器,但在更改为 PowerPack 1.9.9.9 和 VS2010 的发布版本后,我无法编译以下行:
让 lexbuf = Lexing.from_string 文本
我收到以下两个错误:
“未定义值、构造函数、命名空间或类型'from_string'”非常明显,它试图告诉我什么,但解决方案是什么?
我的快速猜测是,这个函数已经被重命名为fromString(因为,一般来说,带有下划线的函数,比如of_seq现在写在 中camelCase)。
fromString
of_seq
camelCase
Lexing.LexBuffer<_>.FromString ?