Giter Club home page Giter Club logo

Comments (6)

Tyill avatar Tyill commented on July 19, 2024 1

How to get the function name:

ir.addFunction("lettuce", [&ir](const vector<string>& args) ->string {
      return !args.empty() ? args[0] : "";
  });

ir.addOperator( // a selection
    "->", [&ir](string &leftOpd, string &rightOpd) -> string {

    auto entities = ir.allEntities();

    auto curEntity = ir.currentEntity();

    int index = curEntity.beginIndex - 1;
    while ((index >= 0) && (entities[index].type != Interpreter::EntityType::FUNCTION))
        --index;

    string parentFunctionName = "";
    if (index >= 0)
        parentFunctionName = entities[index].name;

    if (isNumber(leftOpd) && isNumber(rightOpd)) {
        int a = stoi(leftOpd);
        int b = stoi(rightOpd);
        for (int cnt = a; cnt <= b; cnt++) {
            printf("select %s %d \n\r", parentFunctionName.c_str(), cnt);
        }
    }
    return parentFunctionName;
}, 0);

string scenar = "lettuce(1->24);";

string res = ir.cmd(scenar); // lettuce

from interpreter.

Tyill avatar Tyill commented on July 19, 2024

No, there is no such thing.

from interpreter.

Tyill avatar Tyill commented on July 19, 2024

I'll think about how to do it.

from interpreter.

hippyau avatar hippyau commented on July 19, 2024

okay cool, thanks 👍

I now wonder how I might go about implementing.

from interpreter.

Tyill avatar Tyill commented on July 19, 2024

Added reflection, see example, and functions.

https://github.com/Tyill/interpreter/releases/tag/1.0.6

from interpreter.

hippyau avatar hippyau commented on July 19, 2024

Hi Tyill! Thanks so much, this works, but breaks the multiple instances #1 when using a vector.

This had me stumped, but I think it's because Interpreter *pIr = &ir; is invalidated when its.push_back(test2); is used and the object is moved... Any way around this while still being able to use a dynamic array?

Solved: I should be using a deque instead of a vector, and emplace_back() instead to create the objects in place, instead of using push_back() and moving an object there. facepalm.

from interpreter.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.