代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4751834
gml suntil.gml
.section UNTIL Statement
.*
.mext begin
UNTIL (e)
.mext end
.synote
.mnote e
is a logical expression or integer arithmetic expression, in which
case the result of the integer expression
www.eeworm.com/read/229812/4751848
gml selseif.gml
.section ELSE IF Statement
.*
.mbox begin
ELSE IF (e) THEN
.mbox end
.synote
.mnote e
is a logical expression
.xt on
or integer arithmetic expression, in which case the result of the
i
www.eeworm.com/read/227686/4769669
nt test003-in.nt
# Input file for RDF Model Theory inferencer test case base on the RDF MT
# specification of 23 January 2003
# Description: From the existence of a statement, the existence of statements
# with superp
www.eeworm.com/read/227686/4769684
nt test001-in.nt
# Input file for RDF Model Theory inferencer test case base on the RDF MT
# specification of 23 January 2003
# Description: Every resource that is used in the subject or object of
# a statement is of
www.eeworm.com/read/207991/4999920
mal tst308.mal
# exception variables are implicitly defined
# by the catch statement.
catch NotDefinedException:str;
io.print("Shouldn't do this");
io.print(NotDefineException);
exit NotDefinedException;
www.eeworm.com/read/206619/5006984
cs emptystatement.cs
using System;
using System.Collections;
namespace ICSharpCode.SharpRefactory.Parser.AST
{
public class EmptyStatement : Statement
{
public override object AcceptVisitor(IASTVisitor visito
www.eeworm.com/read/206619/5006987
cs breakstatement.cs
using System;
using System.Collections;
namespace ICSharpCode.SharpRefactory.Parser.AST
{
public class BreakStatement : Statement
{
public override object AcceptVisitor(IASTVisitor visito
www.eeworm.com/read/206619/5006992
cs labelstatement.cs
using System;
using System.Collections;
namespace ICSharpCode.SharpRefactory.Parser.AST
{
public class LabelStatement : Statement
{
string label;
public string Label {
get {
www.eeworm.com/read/206619/5006993
cs continuestatement.cs
using System;
using System.Collections;
namespace ICSharpCode.SharpRefactory.Parser.AST
{
public class ContinueStatement : Statement
{
public override object AcceptVisitor(IASTVisitor vis
www.eeworm.com/read/206619/5007001
cs gotostatement.cs
using System;
using System.Collections;
namespace ICSharpCode.SharpRefactory.Parser.AST
{
public class GotoStatement : Statement
{
string label;
public string Label {
get {