Anabranch.Neo4JConsolePackage.AutoCompleteBehavior.CypherEvaluator.IsInNodeIdentifier C# (CSharp) Method

IsInNodeIdentifier() public static method

public static IsInNodeIdentifier ( string cypher ) : bool
cypher string
return bool
        public static bool IsInNodeIdentifier(string cypher)
        {
            return IsInSomething(cypher, '(', ')');
        }