diff options
author | Thomas Lively <tlively@google.com> | 2024-06-14 14:46:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 14:46:47 -0700 |
commit | 027128dccf76692ca4e000c6dbb489b348b12c73 (patch) | |
tree | 00cbc09eccc2248e1939fa7d9d09c13d8ca769f8 /test/example | |
parent | 0fa99fb09b881985cf94e74b8c0b339bdef61be6 (diff) | |
download | binaryen-027128dccf76692ca4e000c6dbb489b348b12c73.tar.gz binaryen-027128dccf76692ca4e000c6dbb489b348b12c73.tar.bz2 binaryen-027128dccf76692ca4e000c6dbb489b348b12c73.zip |
[NFC] Add constexpr HeapTypes for basic heap types (#6662)
Since the BasicHeapTypes are in an enum, calling HeapType methods on them
requires something like `HeapType(HeapType::func).someMethod()`. This is
unnecessarily verbose, so add a new `HeapTypes` namespace that contains
constexpr HeapType globals that can be used instead, shorting this to
`HeapTypes::func.someMethod()`.
Diffstat (limited to 'test/example')
-rw-r--r-- | test/example/typeinfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/example/typeinfo.cpp b/test/example/typeinfo.cpp index 4edf1cc5d..a8035545b 100644 --- a/test/example/typeinfo.cpp +++ b/test/example/typeinfo.cpp @@ -96,16 +96,16 @@ void test_compound() { void test_printing() { { std::cout << ";; Heap types\n"; - std::cout << HeapType(HeapType::func) << "\n"; + std::cout << HeapTypes::func << "\n"; std::cout << Type(HeapType::func, Nullable) << "\n"; std::cout << Type(HeapType::func, NonNullable) << "\n"; - std::cout << HeapType(HeapType::any) << "\n"; + std::cout << HeapTypes::any << "\n"; std::cout << Type(HeapType::any, Nullable) << "\n"; std::cout << Type(HeapType::any, NonNullable) << "\n"; - std::cout << HeapType(HeapType::eq) << "\n"; + std::cout << HeapTypes::eq << "\n"; std::cout << Type(HeapType::eq, Nullable) << "\n"; std::cout << Type(HeapType::eq, NonNullable) << "\n"; - std::cout << HeapType(HeapType::i31) << "\n"; + std::cout << HeapTypes::i31 << "\n"; std::cout << Type(HeapType::i31, Nullable) << "\n"; std::cout << Type(HeapType::i31, NonNullable) << "\n"; std::cout << Signature(Type::none, Type::none) << "\n"; |