Rev | Line | |
---|
[170] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | #include "Source.h"
|
---|
| 4 | #include "ObjectModule.h"
|
---|
[174] | 5 | #include "LexicalScoping.h"
|
---|
[170] | 6 |
|
---|
| 7 | class Smoothie{
|
---|
[181] | 8 | static bool isUnicode;
|
---|
[170] | 9 | public:
|
---|
| 10 |
|
---|
[181] | 11 | static bool IsUnicode()
|
---|
| 12 | {
|
---|
| 13 | return isUnicode;
|
---|
| 14 | }
|
---|
| 15 | static void SetUnicodeMark( bool isUnicode )
|
---|
| 16 | {
|
---|
| 17 | Smoothie::isUnicode = isUnicode;
|
---|
| 18 | }
|
---|
| 19 |
|
---|
[170] | 20 | class Lexical{
|
---|
| 21 | public:
|
---|
| 22 | static string baseProjectDirPath;
|
---|
| 23 | static BasicSource source;
|
---|
| 24 | };
|
---|
| 25 |
|
---|
| 26 | // コンパイル中に一時的に利用する
|
---|
| 27 | class Temp{
|
---|
| 28 | public:
|
---|
[174] | 29 | // コンパイル中のクラス
|
---|
[172] | 30 | static const CClass *pCompilingClass;
|
---|
[174] | 31 |
|
---|
| 32 | // レキシカルスコープの状態
|
---|
| 33 | static CLexicalScopes *pLexicalScopes;
|
---|
[170] | 34 | };
|
---|
| 35 |
|
---|
| 36 | static bool isFullCompile;
|
---|
| 37 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.