cuberite / toluapp

tolua++ files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for "using" (typedef)

madmaxoft opened this issue · comments

We'd like to get rid of typedef in favor of using, which has a much nicer syntax, while having the exact same functionality. So we'd like ToLua to support this as well.

using AString = std::string;

This should be fairly easy to implement, by tweaking or reusing the typedef handler.