|
52 | 52 | VERNAC COMMAND EXTEND AbstractionReference CLASSIFIED AS SIDEFF |
53 | 53 | | [ "Parametricity" ref(c) ] -> |
54 | 54 | { |
55 | | - command_reference default_arity (Constrintern.intern_reference c) None |
| 55 | + command_reference default_arity (intern_reference_to_name c) None |
56 | 56 | } |
57 | 57 | | [ "Parametricity" reference(c) "as" ident(name)] -> |
58 | 58 | { |
59 | | - command_reference default_arity (Constrintern.intern_reference c) (Some name) |
| 59 | + command_reference default_arity (intern_reference_to_name c) (Some name) |
60 | 60 | } |
61 | 61 | | [ "Parametricity" reference(c) "qualified" ] -> |
62 | 62 | { |
63 | | - command_reference ~fullname:true default_arity (Constrintern.intern_reference c) None |
| 63 | + command_reference ~fullname:true default_arity (intern_reference_to_name c) None |
64 | 64 | } |
65 | 65 | | [ "Parametricity" reference(c) "arity" int(arity) ] -> |
66 | 66 | { |
67 | | - command_reference arity (Constrintern.intern_reference c) None |
| 67 | + command_reference arity (intern_reference_to_name c) None |
68 | 68 | } |
69 | 69 | | [ "Parametricity" reference(c) "arity" int(arity) "as" ident(name) ] -> |
70 | 70 | { |
71 | | - command_reference arity (Constrintern.intern_reference c) (Some name) |
| 71 | + command_reference arity (intern_reference_to_name c) (Some name) |
72 | 72 | } |
73 | 73 | | [ "Parametricity" reference(c) "arity" int(arity) "qualified" ] -> |
74 | 74 | { |
75 | | - command_reference ~fullname:true arity (Constrintern.intern_reference c) None |
| 75 | + command_reference ~fullname:true arity (intern_reference_to_name c) None |
76 | 76 | } |
77 | 77 | | [ "Parametricity" reference(c) "as" ident(name) "arity" integer(arity) ] -> |
78 | 78 | { |
79 | | - command_reference arity (Constrintern.intern_reference c) (Some name) |
| 79 | + command_reference arity (intern_reference_to_name c) (Some name) |
80 | 80 | } |
81 | 81 | END |
82 | 82 |
|
83 | 83 | VERNAC COMMAND EXTEND AbstractionRecursive CLASSIFIED AS SIDEFF |
84 | 84 | | [ "Parametricity" "Recursive" reference(c) ] -> |
85 | 85 | { |
86 | | - command_reference_recursive default_arity (Constrintern.intern_reference c) |
| 86 | + command_reference_recursive default_arity (intern_reference_to_name c) |
87 | 87 | } |
88 | 88 | | [ "Parametricity" "Recursive" reference(c) "arity" integer(arity) ] -> |
89 | 89 | { |
90 | | - command_reference_recursive arity (Constrintern.intern_reference c) |
| 90 | + command_reference_recursive arity (intern_reference_to_name c) |
91 | 91 | } |
92 | 92 | | [ "Parametricity" "Recursive" reference(c) "qualified" ] -> |
93 | 93 | { |
94 | | - command_reference_recursive ~fullname:true default_arity (Constrintern.intern_reference c) |
| 94 | + command_reference_recursive ~fullname:true default_arity (intern_reference_to_name c) |
95 | 95 | } |
96 | 96 | | [ "Parametricity" "Recursive" reference(c) "arity" integer(arity) "qualified" ] -> |
97 | 97 | { |
98 | | - command_reference_recursive ~fullname:true arity (Constrintern.intern_reference c) |
| 98 | + command_reference_recursive ~fullname:true arity (intern_reference_to_name c) |
99 | 99 | } |
100 | 100 | END |
101 | 101 |
|
|
0 commit comments