package bap-std
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
The Binary Analysis Platform Standard Library
Install
dune-project
Dependency
Authors
Maintainers
Sources
v2.5.0.tar.gz
sha256=9c126781385d2fa9b8edab22e62b25c70bf2f99f6ec78abb7e5e36d63cfa4174
md5=5abd9b3628b43f797326034f31ca574f
doc/bap/Bap/Std/Exp/class-visitor/index.html
Class Exp.visitor
expression visitor.
A class for observing expression trees.
Visits AST providing lots of hooks.
For each AST constructor C the visitor provides three methods: enter_C, visit_C, leave_C. The default implementation for enter_C and leave_C is to return its argument. The default implementation for visit_C is the following: 1. call enter_C 2. visit all children 3. call leave_C.
It is recommended to override enter_C method if you only need to visit C constructor without changing a way you're visiting the tree.
See also Bil.visitor and Term.visitor for visiting a program in AST and Graph representation, respectively.
inherit statemethod enter_exp : t -> 'a -> 'amethod visit_exp : t -> 'a -> 'amethod leave_exp : t -> 'a -> 'aStore (dst,addr,src,endian,size)
method enter_extract : hi:int -> lo:int -> t -> 'a -> 'aExtract (hi,lo,e)
method visit_extract : hi:int -> lo:int -> t -> 'a -> 'amethod leave_extract : hi:int -> lo:int -> t -> 'a -> 'amethod enter_int : word -> 'a -> 'aInt w
method visit_int : word -> 'a -> 'amethod leave_int : word -> 'a -> 'amethod enter_var : var -> 'a -> 'aVar v
method visit_var : var -> 'a -> 'amethod leave_var : var -> 'a -> 'amethod enter_unknown : string -> typ -> 'a -> 'aUnknown (str,typ)
method visit_unknown : string -> typ -> 'a -> 'amethod leave_unknown : string -> typ -> 'a -> 'a sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>