File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export const MODULE_TYPE_ROBOT = 'robot';
8383export const MODULE_TYPE_MECHANISM = 'mechanism' ;
8484export const MODULE_TYPE_OPMODE = 'opmode' ;
8585
86- export const ROBOT_CLASS_NAME = 'Robot' ;
86+ const CLASS_NAME_ROBOT = 'Robot' ;
8787
8888const DELIMITER_PREFIX = 'BlocksContent' ;
8989const MARKER_BLOCKS_CONTENT = 'blocksContent: ' ;
@@ -526,7 +526,7 @@ export function newRobotContent(projectName: string): string {
526526 projectName : projectName ,
527527 moduleName : projectName ,
528528 dateModifiedMillis : 0 ,
529- className : ROBOT_CLASS_NAME ,
529+ className : CLASS_NAME_ROBOT ,
530530 } ;
531531
532532 return startingBlocksToModuleContent ( module , startingRobotBlocks ) ;
@@ -711,7 +711,7 @@ export async function produceDownloadProjectBlob(
711711
712712export function getClassNameForModule ( moduleType : string , moduleName : string ) {
713713 return ( moduleType == MODULE_TYPE_ROBOT )
714- ? ROBOT_CLASS_NAME
714+ ? CLASS_NAME_ROBOT
715715 : snakeCaseToPascalCase ( moduleName ) ;
716716}
717717
You can’t perform that action at this time.
0 commit comments