@@ -796,25 +796,25 @@ class ScriptTreeGenerator {
796796 return {
797797 kind : 'comments.reporter' ,
798798 value : this . descendInputOfBlock ( block , 'VALUE' ) ,
799- comment : this . descendInputOfBlock ( block , 'COMMENT' ) ,
799+ comment : this . descendInputOfBlock ( block , 'COMMENT' )
800800 } ;
801801 case 'comments_boolean' :
802802 return {
803803 kind : 'comments.boolean' ,
804804 value : this . descendInputOfBlock ( block , 'VALUE' ) ,
805- comment : this . descendInputOfBlock ( block , 'COMMENT' ) ,
805+ comment : this . descendInputOfBlock ( block , 'COMMENT' )
806806 } ;
807807 case 'comments_object' :
808808 return {
809809 kind : 'comments.object' ,
810810 value : this . descendInputOfBlock ( block , 'VALUE' ) ,
811- comment : this . descendInputOfBlock ( block , 'COMMENT' ) ,
811+ comment : this . descendInputOfBlock ( block , 'COMMENT' )
812812 } ;
813813 case 'comments_array' :
814814 return {
815815 kind : 'comments.array' ,
816816 value : this . descendInputOfBlock ( block , 'VALUE' ) ,
817- comment : this . descendInputOfBlock ( block , 'COMMENT' ) ,
817+ comment : this . descendInputOfBlock ( block , 'COMMENT' )
818818 } ;
819819
820820 case 'tw_getLastKeyPressed' :
@@ -834,10 +834,10 @@ class ScriptTreeGenerator {
834834 if ( blockInfo ) {
835835 const type = blockInfo . info . blockType ;
836836 if (
837- type === BlockType . REPORTER
838- || type === BlockType . BOOLEAN
839- || type === BlockType . OBJECT
840- || type === BlockType . ARRAY
837+ type === BlockType . REPORTER ||
838+ type === BlockType . BOOLEAN ||
839+ type === BlockType . OBJECT ||
840+ type === BlockType . ARRAY
841841 ) {
842842 return this . descendCompatLayer ( block ) ;
843843 }
0 commit comments