Source file meta_ast_generic.ml

1
2
3
4
5
6
7
8
9
10
11

type precision = {
  full_info: bool;
  token_info: bool;
  type_info: bool;
}
let default_precision = {
  full_info = false;
  token_info = false;
  type_info = false;
}