Lines Matching full:rewrite
17 The core abstraction of Transformer is the *rewrite rule*, which specifies how
69 can express this a Transformer rewrite rule:
77 ``makeRule`` is our go-to function for generating rewrite rules. It takes three
150 Now, we probably don't want to rewrite *all* invocations of "size" methods, just
182 This rule isn't quite what we want: it will rewrite ``my_object.child().foo()`` to
183 ``my_object.foo()``, but it will also rewrite ``my_ptr->child().foo()`` to
186 *want* to rewrite calls through pointers.
208 The above examples demonstrate just the basics of rewrite rules. Every element
212 rewrite rules are actually rewriting.
218 explanation of what the rewrite rules are actually rewriting. We've referred to
338 of rules that rewrite compound statements, where one rule handles the case of an
363 Transformer supports executing a rewrite rule as a