Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F4820592
interpretation-instructions.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Aug 24, 8:17 AM
Size
1 KB
Mime Type
text/x-c++
Expires
Wed, Aug 26, 8:17 AM (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
283187
Attached To
rXR Xreate
interpretation-instructions.h
View Options
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/*
* Author: pgess <v.melnychenko@xreate.org>
* Created on June 15, 2018, 5:28 PM
*
* \file interpretation-instructions.h
* \brief Additional intepretation statements
*/
#ifndef INTERPRETATION_INSTRUCTIONS_H
#define INTERPRETATION_INSTRUCTIONS_H
#include "ast.h"
namespace xreate{
namespace compilation{
class Context;
}
}
namespace xreate{
namespace interpretation{
class InterpretationFunction;
class IntrinsicQueryInstruction{
public:
IntrinsicQueryInstruction(InterpretationFunction* fn): __fnI12n(fn){ }
Expression process(const Expression& expression);
llvm::Value* processLate(const Expression& expression, const compilation::Context& context);
private:
InterpretationFunction* __fnI12n;
};
}
} //end of xreate::interpretation
#endif /* INTERPRETATION_INSTRUCTIONS_H */
Event Timeline
Log In to Comment