Li Jin

Results 161 comments of Li Jin

I'm using Teal in a C++ project with Lua embedded, and get a lot of native OOP stuff exported into Lua. So I just seek for a way to do...

Ctrl+z should work like Ctrl+d now.

1. A chain value for backcall syntax could be one of the followings: Callable: ```moonscript @, @field, (a + b), func, t.func, t\func, t.func?, $macro ``` Invoke: ```moonscript f!, f(1,2,3),...

Just found that I missed a question. There is a syntax for your need: ```moonscript readFile("example.txt") |> extract(_, language, {}) -- _ is a placeholder here instead of a variable...

Changed the backcall operator syntax. ```Moonscript readFile "example.txt" |> extract language, {} |> parse language |> emit |> render |> print ``` will be compiled to the expected output with...

Had a little test for C++11 compiler flag. Yuescript is using other features from C++14 and C++17 alongside with string_view, so we need many refactoring works to make it compatible...

Moving the codes to C++11 just requires some labor work, but I think the main issue is why we must do a downgrade to fix problems and restrain the use...

Maybe you can make a pr for your tweaked version into a new branch, and I can see if it's possible to use some macro to config the project for...

How you are using the Yuescript binary tool? Through `luarocks install yuescript` or `make release`? And what version of Yuescript and Lua are you using? The version of Yuescript 0.6.9...

It should be the issue of older Yuescript. Try `luarocks install yuescript` again should fix the problem.