[tint][wgsl] Split CloneContext into two

Split into ast::CloneContext and program::CloneContext

program::CloneContext wraps the ast::CloneContext.

The purpose of this is to break the cyclic dependency between AST <->
Program.

Change-Id: If52962b074c862cf681ca8367f2ed2bf8478c3dd
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/143386
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: James Price <jrprice@google.com>
diff --git a/src/tint/lang/wgsl/ast/int_literal_expression.h b/src/tint/lang/wgsl/ast/int_literal_expression.h
index f6399db..10548c1 100644
--- a/src/tint/lang/wgsl/ast/int_literal_expression.h
+++ b/src/tint/lang/wgsl/ast/int_literal_expression.h
@@ -46,7 +46,7 @@
     /// `ctx`.
     /// @param ctx the clone context
     /// @return the newly cloned node
-    const IntLiteralExpression* Clone(CloneContext* ctx) const override;
+    const IntLiteralExpression* Clone(CloneContext& ctx) const override;
 
     /// The literal value
     const int64_t value;