* Usual svn props.
* t/var/constant.t: Minor fixes.
* Pugs.PIL1, Pugs.Compile: PSub and PCode contain a p[Sub]?IsMulti? field now,
so PIL2JS and PIL-Run can know which subs are multis and which subs are not.
* Pugs.CodeGen?.PIR: Accomodate for the above change.
* PIL2JS: (Simple) multi subs!
- PIL2JS.js: If necessary, try to call all .variants of a multi to find out
whether the parameters match the sub signature. (Hack)
- PIL::Subs: Emit appropriate code for multis --
multi foo {...} # is compiled as
our &foo ::= PIL2JS.new_multi(); &foo.add_variant({...});
* Test.pm: Removed the skip_rest_anti_multi-hack which was previously needed
for PIL2JS. :)