forked from google/blockly
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall.js
32 lines (27 loc) · 840 Bytes
/
all.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Complete helper functions for generating Zig for
* blocks. This is the entrypoint for zig_compressed.js.
* @suppress {extraRequire}
*/
'use strict';
goog.module('Blockly.Zig.all');
// Common Blocks
goog.require('Blockly.Zig.colour');
goog.require('Blockly.Zig.lists');
goog.require('Blockly.Zig.logic');
goog.require('Blockly.Zig.loops');
goog.require('Blockly.Zig.math');
goog.require('Blockly.Zig.procedures');
goog.require('Blockly.Zig.texts');
goog.require('Blockly.Zig.variables');
goog.require('Blockly.Zig.variablesDynamic');
// Zig Custom Blocks and Code Generators
goog.require('Blockly.Zig.blocks');
goog.require('Blockly.Zig.functions');
// Compose Message Block
goog.require('Blockly.Zig.composeMessage');