idlc 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/idlc/interfaces.rb +5 -1
- data/lib/idlc/type.rb +2 -2
- data/lib/idlc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7afb7419f8d68fe843767795803581f71b8b82f4f160f12620240e26fd959eae
|
|
4
|
+
data.tar.gz: 75017626ea863fc6d80db787eb829450ec1b0663520607b547bfa7c5c2be81c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 718129ce9fca746406948debcf0563ae705f5e0f5e5e8e62bc129d75d2cb9352aa999cb1bb16f3d252d95398c7d2f4debe4af67e9b7d755f9ba9a21848fb977e
|
|
7
|
+
data.tar.gz: a6595cf7d2e9ba63a02ae37fe690c8b06f12c7c45bb5badc221ff9e7ad3446caa1cffd0bc8354c4083b5e0ef95511fb11ad8cd71c146d36a63a76740094ea32e
|
data/lib/idlc/interfaces.rb
CHANGED
|
@@ -79,6 +79,10 @@ module Idl
|
|
|
79
79
|
sig { abstract.returns(T::Boolean) }
|
|
80
80
|
def defined_in_base64?; end
|
|
81
81
|
|
|
82
|
+
# whether or not this field is defined in the given base
|
|
83
|
+
sig { abstract.params(xlen: Integer).returns(T::Boolean) }
|
|
84
|
+
def defined_in_base?(xlen); end
|
|
85
|
+
|
|
82
86
|
# whether or not this field is defined only in RV64
|
|
83
87
|
sig { abstract.returns(T::Boolean) }
|
|
84
88
|
def base64_only?; end
|
|
@@ -90,7 +94,7 @@ module Idl
|
|
|
90
94
|
# returns the location of the field in the CSR.
|
|
91
95
|
# base is required when the field moves locations between RV32 and RV64
|
|
92
96
|
sig { abstract.params(base: T.nilable(Integer)).returns(T::Range[Integer]) }
|
|
93
|
-
def location(base); end
|
|
97
|
+
def location(base = nil); end
|
|
94
98
|
|
|
95
99
|
sig { abstract.params(base: T.nilable(Integer)).returns(Integer) }
|
|
96
100
|
def width(base); end
|
data/lib/idlc/type.rb
CHANGED
data/lib/idlc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: idlc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Derek Hower
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-08-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: activesupport
|