MCPcopy Create free account
hub / github.com/diem/move / Script

Class Script

language/move-compiler/src/parser/ast.rs:87–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85
86#[derive(Debug, Clone)]
87pub struct Script {
88 pub attributes: Vec<Attributes>,
89 pub loc: Loc,
90 pub uses: Vec<UseDecl>,
91 pub constants: Vec<Constant>,
92 pub function: Function,
93 pub specs: Vec<SpecBlock>,
94}
95
96#[derive(Debug, PartialEq, Clone, Eq)]
97pub enum Use {

Callers 3

extract_spec_modulesFunction · 0.70
parse_visibilityFunction · 0.70
parse_fileFunction · 0.70

Calls

no outgoing calls

Tested by 1

extract_spec_modulesFunction · 0.56