Compare commits

..

No commits in common. "0d4488e7815562a1e70f5d776832fbeb439f8b19" and "ba4861a5fb8cef7e5f85d22015dc94aeaa923741" have entirely different histories.

3 changed files with 15 additions and 8 deletions

View File

@ -14,12 +14,19 @@ fn main() {
print(a + " " + b + "!\n"); // -> "Hello world!"
if a == b {
print("Equal\n");
print("whaaaat\n");
}
else {
print("Unequal\n");
print(":o\n");
}
for (let i = 0; i < 10; i += 1) {
loop {
let i = 0;
if i >= 10 {
break;
}
i = i + 1;
}
}

Binary file not shown.

View File

@ -90,7 +90,7 @@ export function loadFlameGraph(
function renderNodes(nodes: CalcNode[]) {
for (const node of nodes) {
const { x, y, w, h } = node;
ctx.fillStyle = "rgb(227, 178, 60)";
ctx.fillStyle = "rgb(255, 125, 0)";
ctx.fillRect(x + 2, y + 2, w - 4, h - 4);
const textCanvas = drawTextCanvas(node);
@ -105,8 +105,8 @@ export function loadFlameGraph(
x + 2 + edgeWidth,
0,
);
leftGradient.addColorStop(1, "rgba(227, 178, 60, 0.0)");
leftGradient.addColorStop(0, "rgba(227, 178, 60, 1.0)");
leftGradient.addColorStop(1, "rgba(255, 125, 0, 0.0)");
leftGradient.addColorStop(0, "rgba(255, 125, 0, 1.0)");
ctx.fillStyle = leftGradient;
ctx.fillRect(x + 2, y + 2, Math.min(edgeWidth, (w - 4) / 2), h - 4);
@ -116,8 +116,8 @@ export function loadFlameGraph(
x + w - 2 - edgePadding,
0,
);
rightGradient.addColorStop(0, "rgba(227, 178, 60, 0.0)");
rightGradient.addColorStop(1, "rgba(227, 178, 60, 1.0)");
rightGradient.addColorStop(0, "rgba(255, 125, 0, 0.0)");
rightGradient.addColorStop(1, "rgba(255, 125, 0, 1.0)");
ctx.fillStyle = rightGradient;
ctx.fillRect(
x + w - 2 - Math.min(edgeWidth, (w - 4) / 2),