Package: dparser Title: Port of 'Dparser' Package Version: 1.3.1-13 Authors@R: c(person("Matthew", "Fidler", email = "matthew.fidler@gmail.com", role = c("aut", "cre")), person("John", "Plevyak", role = c("aut", "cph"), email = "jplevyak@gmail.com")) Imports: digest, methods Suggests: rex, covr, testthat, knitr, devtools Description: A Scannerless GLR parser/parser generator. Note that GLR standing for "generalized LR", where L stands for "left-to-right" and R stands for "rightmost (derivation)". For more information see . This parser is based on the Tomita (1987) algorithm. (Paper can be found at ). The original 'dparser' package documentation can be found at . This allows you to add mini-languages to R (like rxode2's ODE mini-language Wang, Hallow, and James 2015 ) or to parse other languages like 'NONMEM' to automatically translate them to R code. To use this in your code, add a LinkingTo dparser in your DESCRIPTION file and instead of using #include use #include . This also provides a R-based port of the make_dparser command called mkdparser(). Additionally you can parse an arbitrary grammar within R using the dparse() function, which works on most OSes and is mainly for grammar testing. The fastest parsing, of course, occurs at the C level, and is suggested. Depends: R (>= 3.3) License: BSD_3_clause + file LICENSE BugReports: https://github.com/nlmixr2/dparser-R/issues/ URL: https://nlmixr2.github.io/dparser-R/, https://github.com/nlmixr2/dparser-R/ Encoding: UTF-8 RoxygenNote: 7.3.3 Repository: https://nlmixr2.r-universe.dev Date/Publication: 2026-05-04 03:49:18 UTC RemoteUrl: https://github.com/nlmixr2/dparser-R RemoteRef: HEAD RemoteSha: 93056acdf6ddad2a910f1f5040cf7d0efad756d5 NeedsCompilation: yes Packaged: 2026-06-24 02:28:45 UTC; root Author: Matthew Fidler [aut, cre], John Plevyak [aut, cph] Maintainer: Matthew Fidler