Compare commits
No commits in common. "0d4488e7815562a1e70f5d776832fbeb439f8b19" and "ba4861a5fb8cef7e5f85d22015dc94aeaa923741" have entirely different histories.
0d4488e781
...
ba4861a5fb
@ -14,12 +14,19 @@ fn main() {
|
|||||||
print(a + " " + b + "!\n"); // -> "Hello world!"
|
print(a + " " + b + "!\n"); // -> "Hello world!"
|
||||||
|
|
||||||
if a == b {
|
if a == b {
|
||||||
print("Equal\n");
|
print("whaaaat\n");
|
||||||
}
|
}
|
||||||
else {
|
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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
BIN
usecase.odt
BIN
usecase.odt
Binary file not shown.
@ -90,7 +90,7 @@ export function loadFlameGraph(
|
|||||||
function renderNodes(nodes: CalcNode[]) {
|
function renderNodes(nodes: CalcNode[]) {
|
||||||
for (const node of nodes) {
|
for (const node of nodes) {
|
||||||
const { x, y, w, h } = node;
|
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);
|
ctx.fillRect(x + 2, y + 2, w - 4, h - 4);
|
||||||
|
|
||||||
const textCanvas = drawTextCanvas(node);
|
const textCanvas = drawTextCanvas(node);
|
||||||
@ -105,8 +105,8 @@ export function loadFlameGraph(
|
|||||||
x + 2 + edgeWidth,
|
x + 2 + edgeWidth,
|
||||||
0,
|
0,
|
||||||
);
|
);
|
||||||
leftGradient.addColorStop(1, "rgba(227, 178, 60, 0.0)");
|
leftGradient.addColorStop(1, "rgba(255, 125, 0, 0.0)");
|
||||||
leftGradient.addColorStop(0, "rgba(227, 178, 60, 1.0)");
|
leftGradient.addColorStop(0, "rgba(255, 125, 0, 1.0)");
|
||||||
ctx.fillStyle = leftGradient;
|
ctx.fillStyle = leftGradient;
|
||||||
ctx.fillRect(x + 2, y + 2, Math.min(edgeWidth, (w - 4) / 2), h - 4);
|
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,
|
x + w - 2 - edgePadding,
|
||||||
0,
|
0,
|
||||||
);
|
);
|
||||||
rightGradient.addColorStop(0, "rgba(227, 178, 60, 0.0)");
|
rightGradient.addColorStop(0, "rgba(255, 125, 0, 0.0)");
|
||||||
rightGradient.addColorStop(1, "rgba(227, 178, 60, 1.0)");
|
rightGradient.addColorStop(1, "rgba(255, 125, 0, 1.0)");
|
||||||
ctx.fillStyle = rightGradient;
|
ctx.fillStyle = rightGradient;
|
||||||
ctx.fillRect(
|
ctx.fillRect(
|
||||||
x + w - 2 - Math.min(edgeWidth, (w - 4) / 2),
|
x + w - 2 - Math.min(edgeWidth, (w - 4) / 2),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user