Skip to content

Commit 1a1eadc

Browse files
Update implOfOperators.md
1 parent 2437942 commit 1a1eadc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/developers/core/implOfOperators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Operators Implementation
2-
The implementation of the operators (+, -, *, /, ==, ===, !=, !==, &&, ||, !) are implemented in the [decompiler](https://github.com/microsoft/pxt/blob/master/pxtcompiler/emitter/decompiler.ts).
2+
The implementation of the blockly operators (+, -, *, /, ==, ===, !=, !==, &&, ||, !) are implemented in the [decompiler](https://github.com/microsoft/pxt/blob/master/pxtcompiler/emitter/decompiler.ts).
33
They are implemented by using a map, which includes the type of the operator and where it belongs:
44
``` ts
55
const ops: pxt.Map<{ type: string; op?: string; leftName?: string; rightName?: string }> = {

0 commit comments

Comments
 (0)