source: dev/trunk/ab5.0/abdev/BasicCompiler_Common/include/LexicalAnalyzer.h@ 508

Last change on this file since 508 was 508, checked in by dai_9181, 16 years ago

Symbolコンストラクタを少なくし、LexicalAnalyzer::FullNameToSymbolメソッドを実装。

File size: 343 bytes
RevLine 
[506]1#pragma once
2
3namespace ActiveBasic{ namespace Compiler{
4
5
6class LexicalAnalyzer
7{
8public:
9 static bool CollectNamespaces( const char *source, NamespaceScopesCollection &namespaceScopesCollection );
[508]10 static Symbol FullNameToSymbol( const char *fullName );
11 static Symbol FullNameToSymbol( const std::string &fullName );
[506]12};
13
14
15}}
Note: See TracBrowser for help on using the repository browser.