rialo-sol-syn 0.4.2

Sol syntax parsing and code generation tools
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Subzero Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

pub mod accounts;
pub mod context;
pub mod docs;
pub mod error;
pub mod program;
pub mod spl_interface;

pub fn tts_to_string<T: quote::ToTokens>(item: T) -> String {
    item.to_token_stream().to_string()
}