Skip to content

Commit 4fd0042

Browse files
committed
Temporarily remove pretty printing for token streams
1 parent a348804 commit 4fd0042

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

node-graph/gstd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ide_db = { version = "*", package = "ra_ap_ide_db" , optional = true }
2626
storage-map = { version = "*", optional = true }
2727
lock_api = { version= "*", optional = true }
2828
parking_lot = { version = "*", optional = true }
29-
pretty-token-stream = {path = "../../pretty-token-stream"}
29+
#pretty-token-stream = {path = "../../pretty-token-stream"}
3030
syn = {version = "1.0", default-features = false, features = ["parsing", "printing"]}
3131
proc-macro2 = {version = "1.0", default-features = false, features = ["proc-macro"]}
3232
quote = {version = "1.0", default-features = false }

node-graph/gstd/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ fn main() {
108108
output: syn::Type::Verbatim(quote! {u32}),
109109
};
110110

111-
let pretty = pretty_token_stream::Pretty::new(nodegraph.serialize_gpu("add"));
112-
pretty.print();
111+
//let pretty = pretty_token_stream::Pretty::new(nodegraph.serialize_gpu("add"));
112+
//pretty.print();
113113
/*
114114
use dyn_any::{downcast_ref, DynAny, StaticType};
115115
//let mut mul = mul::MulNode::new();

0 commit comments

Comments
 (0)