mirror of
https://github.com/sensebox/blockly-app
synced 2025-02-23 16:23:59 +01:00
19 lines
377 B
JavaScript
19 lines
377 B
JavaScript
/**
|
|
* @license Licensed under the Apache License, Version 2.0 (the "License"):
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Code generator for the test 2 blocks.
|
|
*/
|
|
'use strict';
|
|
|
|
goog.provide('Blockly.Arduino.test');
|
|
|
|
goog.require('Blockly.Arduino');
|
|
|
|
|
|
/** . */
|
|
Blockly.Arduino['ardublockly_name_top'] = function(block) {
|
|
return '';
|
|
};
|