1234567891011121314151617181920212223242526 |
- using System;
- namespace NTERA.Interpreter
- {
- [AttributeUsage(AttributeTargets.Method)]
- public class TargetKeywordAttribute : Attribute
- {
- public Token Token { get; }
- public TargetKeywordAttribute(Token token)
- {
- Token = token;
- }
- }
- [AttributeUsage(AttributeTargets.Method)]
- public class BuiltInFunctionAttribute : Attribute
- {
- public string Name { get; }
- public BuiltInFunctionAttribute(string name)
- {
- Name = name;
- }
- }
- }
|