D-Scanner/langutils.d

60 lines
1.3 KiB
D

// Copyright Brian Schott (Sir Alaran) 2012.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
module langutils;
import std.array;
import std.algorithm;
import std.d.lexer;
string combineTokens(ref const Token[] tokens)
{
auto app = appender!string();
foreach (t; tokens)
app.put(t.value);
return app.data;
}
pure nothrow string getTypeFromToken(const Token t)
{
switch (t.type)
{
case TokenType.DoubleLiteral:
return "double";
case TokenType.FloatLiteral:
return "float";
case TokenType.IntLiteral:
return "int";
case TokenType.RealLiteral:
return "real";
case TokenType.UnsignedIntLiteral:
return "uint";
case TokenType.UnsignedLongLiteral:
return "ulong";
case TokenType.LongLiteral:
return "long";
case TokenType.DStringLiteral:
return "dstring";
case TokenType.StringLiteral:
return "string";
case TokenType.WStringLiteral:
return "wstring";
default:
return null;
}
}
pure bool isDocComment(ref const Token t)
{
return t.value.startsWith("///") || t.value.startsWith("/**")
|| t.value.startsWith("/++");
}
pure nothrow bool isIdentifierOrType(const TokenType t)
{
return isType(t) || t == TokenType.Identifier;
}