Class: SeccompTools::Asm::Scalar::Base
- Inherits:
-
Object
- Object
- SeccompTools::Asm::Scalar::Base
show all
- Defined in:
- lib/seccomp-tools/asm/scalar.rb
Overview
To be used to denote a register (A / X), an argument (data[]), or a memory data (mem[]).
Instance Attribute Summary collapse
Instance Method Summary
collapse
Instance Attribute Details
#val ⇒ Object
Returns the value of attribute val.
14
15
16
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 14
def val
@val
end
|
Instance Method Details
#a? ⇒ Boolean
16
17
18
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 16
def a?
false
end
|
#const? ⇒ Boolean
36
37
38
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 36
def const?
false
end
|
#data? ⇒ Boolean
28
29
30
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 28
def data?
false
end
|
#len? ⇒ Boolean
24
25
26
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 24
def len?
false
end
|
#mem? ⇒ Boolean
32
33
34
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 32
def mem?
false
end
|
#x? ⇒ Boolean
20
21
22
|
# File 'lib/seccomp-tools/asm/scalar.rb', line 20
def x?
false
end
|