MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / valueIsPointer

Method valueIsPointer

extern/cloop/src/cloop/Parser.cpp:545–565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

543}
544
545bool TypeRef::valueIsPointer()
546{
547 if (isPointer)
548 return true;
549
550 switch (token.type)
551 {
552 case Token::TYPE_STRING:
553 return true;
554
555 case Token::TYPE_IDENTIFIER:
556 if (type == BaseType::TYPE_INTERFACE)
557 return true;
558 break;
559
560 default:
561 break;
562 }
563
564 return false;
565}
566

Callers 1

generateMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected