mirror of
https://github.com/sensebox/blockly-app
synced 2025-02-24 00:53:58 +01:00
20 lines
377 B
JavaScript
20 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 '';
|
||
|
};
|