about summary refs log blame commit diff stats
path: root/themes/aqua
blob: 48b3d4e75520963e7a8f53423ada242782c7f89e (plain) (tree)
1
2
3
4
5


             
                        
                       










                          
                         
                         



                        

                         
                      
                          








                          

                


          
                  
                  

                 
           
         
                
              
                     
                          
                     
                          

          
                        

















                                

                            

                             
                           
                  
[colours]
bkgnd=default
titlebar=blue
titlebar.text=bold_white
titlebar.brackets=white
titlebar.unencrypted=cyan
titlebar.encrypted=white
titlebar.untrusted=cyan
titlebar.trusted=white
titlebar.online=bold_white
titlebar.offline=cyan
titlebar.away=white
titlebar.chat=bold_white
titlebar.dnd=cyan
titlebar.xa=bold_cyan
statusbar=blue
statusbar.text=bold_white
statusbar.time=bold_white
statusbar.brackets=white
statusbar.active=cyan
statusbar.new=white
main.text=blue
main.text.me=bold_cyan
main.text.them=bold_white
main.splash=bold_white
main.help.header=bold_blue
main.time=cyan
input.text=white
subscribed=bold_cyan
unsubscribed=blue
otr.started.trusted=white
otr.started.untrusted=cyan
otr.ended=cyan
otr.trusted=white
otr.untrusted=cyan
online=bold_cyan
away=bold_blue
chat=white
dnd=blue
xa=cyan
offline=bold_black
incoming=bold_cyan
mention=bold_blue
trigger=bold_blue
typing=cyan
gone=blue
error=bold_white
roominfo=white
roommention=bold_blue
roommention.term=bold_blue
roomtrigger=bold_blue
roomtrigger.term=bold_blue
me=cyan
them=white
roster.header=bold_white
roster.chat=white
roster.online=bold_cyan
roster.away=bold_blue
roster.xa=cyan
roster.dnd=blue
roster.offline=bold_black
roster.chat.active=white
roster.online.active=bold_cyan
roster.away.active=bold_blue
roster.xa.active=cyan
roster.dnd.active=blue
roster.offline.active=bold_black
roster.chat.unread=white
roster.online.unread=bold_cyan
roster.away.unread=bold_blue
roster.xa.unread=cyan
roster.dnd.unread=blue
roster.offline.unread=bold_black
roster.room=cyan
roster.room.unread=bold_cyan
roster.room.mention=bold_blue
roster.room.trigger=bold_blue
occupants.header=bold_white
receipt.sent=white
w"> << caller.name << " can't determine the size of array variable " << x.name << ". Either allocate it separately and make the type of " << x.name << " address:..., or specify the length of the array in the type of " << x.name << ".\n" << end(); return; } } } :(scenario transform_fills_in_missing_types) def main [ x:number <- copy 1 y:number <- add x, 1 ] :(scenario transform_fills_in_missing_types_in_product) def main [ x:number <- copy 1 x <- copy 2 ] :(scenario transform_fills_in_missing_types_in_product_and_ingredient) def main [ x:number <- copy 1 x <- add x, 1 ] +mem: storing 2 in location 1 :(scenario transform_fails_on_missing_types_in_first_mention) % Hide_errors = true; def main [ x <- copy 1 x:number <- copy 2 ] +error: main: missing type for x in 'x <- copy 1' :(scenario typo_in_address_type_fails) % Hide_errors = true; def main [ y:address:charcter <- new character:type *y <- copy 67 ] +error: main: unknown type charcter in 'y:address:charcter <- new character:type' :(scenario array_type_without_size_fails) % Hide_errors = true; def main [ x:array:number <- merge 2, 12, 13 ] +error: main can't determine the size of array variable x. Either allocate it separately and make the type of x address:..., or specify the length of the array in the type of x. :(scenarios transform) :(scenario transform_checks_types_of_identical_reagents_in_multiple_spaces) def foo [ # dummy ] def main [ local-scope 0:address:array:location/names:foo <- copy 0 # specify surrounding space x:boolean <- copy 1/true x:number/space:1 <- copy 34 x/space:1 <- copy 35 ] $error: 0