-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompilerFactory.cpp
executable file
·32 lines (29 loc) · 1010 Bytes
/
CompilerFactory.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "CompilerFactory.h"
#include "syntax/FlexBYACC.h"
/**
* This object is automatically registered by the constructor in the
* superclass' language registry.
*/
at::CompilerFactory at::CompilerFactory::_thisFactory("at");
/**
* Create a parser object for the At language.
* This method is now private and is called only from the compiler creation
* method.
* @param name name of the input file (for debug only)
* @return parser object pointer
* @see createCompiler
*/
cdk::syntax::Parser *at::CompilerFactory::createParser(const char *name) {
at::syntax::FlexBYACC *parser = new at::syntax::FlexBYACC();
parser->scanner(new AtScanner(NULL, NULL));
return parser;
}
/**
* Create a compiler object for a given language.
* @param name name of the language handled by the compiler
* @return compiler object pointer
*/
cdk::Compiler *at::CompilerFactory::createCompiler(const char *name) {
cdk::syntax::Parser *parser = createParser(name);
return new cdk::Compiler(name, parser);
}