comparison modules/parser.tp @ 360:0b83f15e819d

Update llcompile for changes to llFun syntax
author Michael Pavone <pavone@retrodev.com>
date Tue, 21 Apr 2015 09:00:56 -0700
parents 27477c8c2823
children
comparison
equal deleted inserted replaced
359:023c29e1f595 360:0b83f15e819d
939 Rest <- zeroPlus: typedarg 939 Rest <- zeroPlus: typedarg
940 } yield: { 940 } yield: {
941 if: (Rest length) = 0 { 941 if: (Rest length) = 0 {
942 Rest <- [] 942 Rest <- []
943 } 943 }
944 ":" . First | Rest 944 First | Rest
945 } 945 }
946 match: "" yield: { [] } 946 match: "" yield: { [] }
947 ] 947 ]
948 Exprs <- zeroPlus: expr 948 Exprs <- zeroPlus: expr
949 } yield: { 949 } yield: {