Skip to content
#

transpiler

Here are 479 public repositories matching this topic...

tujinshu
tujinshu commented Dec 3, 2019

2019/12/02 和Yi Wang沟通交流考虑SQLFLOW可以支持如下的特性

一、基础功能:好用的工具需要一个更加简易友好的界面,让业务开发/分析更加简单
1)设计分析类工具,提供自动联想输入、快速语法、常见语义错误,提升用户体验
应用场景:提供IDE的自动联想功能,提高开发效率;语法和基本语义提前检查,避免提交到后台,执行较长时间后报错
2)大数据量时时间较长,建议提供任务(job)管理、允许用户了解数据执行的状态、监控进度、提供动态调试、watch能力,方便用户感知和调优
应用场景:耗时任务可以快速了解整体进度,提供一些中间的过程信息、耗时等,方便用户进行调优,优化开发
3) 安全权限、用户管理、
应用场景:增加新的数据分析人员、用户权

nadako
nadako commented Mar 17, 2020

So currently the doc for EReg.matched says this:

The index n corresponds to the n-th set of parentheses in the pattern
of this EReg. If no such sub-group exists, the result is unspecified.

But it's not immediately clear what "no such sub-group exists" means exactly. I assume it means that the group was not defined in the regex. But it's a bit confusing in case the group was define

mczarnek
mczarnek commented Feb 6, 2020

I love the idea behind this project!!!

I'm seeing that you don't automatically support say downloading stdio.h and stdio.c and transpiling them at the same time? How hard would that be? Seems like it'd be a huge win to automatically support standard libraries.


While I'm at it, I just posted to gstreamer-rs github encouraging them to try this out, I'd recommend he

Yoric
Yoric commented Dec 7, 2018

While superfluous parens have no official semantics, they are actually used by browsers to perform laziness tricks:

var foo = function() { ... }; // Parsed lazily by the browser.
var bar = (function() { ... }); // Parsed eagerly by the browser.

It would be very useful to keep superfluous parens in such a case (or perhaps always). I don't know if that's what ratel does currently,

Newbytee
Newbytee commented Dec 8, 2019

Currently the online version of transpiler seemingly only displays error messages in the developer console. That's okay, but considering that the developer console isn't always available and not where content on the web generally is displayed, I believe it would be favourable to have error messages displayed on-page along with in the developer console.

IL2C
bencz
bencz commented Apr 11, 2020

Are there any plans to implement the reflection system in the project, if so, do you have any idea how it will work to generate methods and classes at runtime, and execute this code?

For exemple, if we have this code:

    static void Main(string[] args)
    {
        const string AssemblyName = "HelloWorld.dll";
        var assembly = AssemblyBuilder.DefineDynamicAssembly(

Improve this page

Add a description, image, and links to the transpiler topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the transpiler topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.