Remove EWASM backend.

This commit is contained in:
Alexander Arlt
2023-05-11 10:56:55 -05:00
parent 0a0c389541
commit c5673278a7
1042 changed files with 97 additions and 10946 deletions
@@ -34,8 +34,6 @@ contract Child is Base {
BaseBase.init(c, d);
}
}
// ====
// compileToEwasm: also
// ----
// x() -> 0
// y() -> 0
@@ -18,8 +18,6 @@ contract Child is Base {
Base.init(c, d);
}
}
// ====
// compileToEwasm: also
// ----
// x() -> 0
// y() -> 0
@@ -9,7 +9,5 @@ contract Child is Base {
return f(n);
}
}
// ====
// compileToEwasm: also
// ----
// g(uint256): 4 -> 8
@@ -22,8 +22,6 @@ contract Child is Base {
return s(n);
}
}
// ====
// compileToEwasm: also
// ----
// g(uint256): 4 -> 12
// h(uint256): 4 -> 16
@@ -25,8 +25,6 @@ contract Child is Base {
return BaseBase.s(n);
}
}
// ====
// compileToEwasm: also
// ----
// g(uint256): 4 -> 8
// k(uint256): 4 -> 16
@@ -9,7 +9,5 @@ contract Child is Base {
return Base.f(n);
}
}
// ====
// compileToEwasm: also
// ----
// g(uint256): 4 -> 8
@@ -14,7 +14,5 @@ contract C is V
{
function a() internal view override returns (uint256) { return 42; }
}
// ====
// compileToEwasm: also
// ----
// b() -> 42
@@ -15,7 +15,5 @@ contract B is A, I {
return super.f();
}
}
// ====
// compileToEwasm: also
// ----
// f() -> 42
@@ -15,7 +15,5 @@ contract B is A, I {
return super.f();
}
}
// ====
// compileToEwasm: also
// ----
// f() -> 42