1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[OCaml] (PR10016) Add a few missing line in OCamlLangImpl2.rst

Original patch by Damien Schoof

llvm-svn: 194067
This commit is contained in:
Peter Zotov 2013-11-05 12:14:04 +00:00
parent d0caa24ad9
commit d7002e4dd1

View File

@ -339,6 +339,9 @@ expression:
(* Eat the binop. *)
Stream.junk stream;
(* Parse the primary expression after the binary operator *)
let rhs = parse_primary stream in
(* Okay, we know this is a binop. *)
let rhs =
match Stream.peek stream with