You can search for identifiers within the package.
in-package search v0.2.0
passage
template_ast.ml
1 2 3 4 5 6 7 8 9 10 11 12 open Printf type ast_node = | Iden of string | Text of string type ast = ast_node list let to_string node = match node with | Iden s -> sprintf "Iden(%S)" s | Text s -> sprintf "Text(%S)" s
1 2 3 4 5 6 7 8 9 10 11 12
open Printf type ast_node = | Iden of string | Text of string type ast = ast_node list let to_string node = match node with | Iden s -> sprintf "Iden(%S)" s | Text s -> sprintf "Text(%S)" s