代码搜索结果
找到约 820,005 项符合
if 的代码
~parser.pl.svn-base
#: parser.pl
use strict;
use warnings;
package X;
our ($str, $pos, $level);
package Parser;
local $/;
my $src = ;
die "No input source code.\n" if !defined $src;
print "\n", parse
parser.pl.svn-base
#: parser.pl
use strict;
use warnings;
package X;
our ($str, $pos, $level);
package Parser;
local $/;
my $src = ;
die "No input source code.\n" if !defined $src;
print "\n", parse
02test.svn-base
if cond {
print "a"
}
else {
say "b"
}
~04out.svn-base
trying if_stmt...
trying if_stmt_production_1...
trying 'if'...
>>MATCH>MATCH>MATCH
~03out.svn-base
trying if_stmt...
trying if_stmt_production_1...
trying 'if'...
>>MATCH>MATCH>MATCH
~01out.svn-base
trying if_stmt...
trying if_stmt_production_1...
trying 'if'...
>>MATCH>MATCH>MATCH
03test.svn-base
if cond {
print "a"
}
01test.svn-base
if cond { print "a" } else { say "b" }
~02out.svn-base
trying if_stmt...
trying if_stmt_production_1...
trying 'if'...
>>MATCH>MATCH>MATCH
04test.svn-base
if cond