Skip to content

几个需要支持的点 #14

Description

@leefj

1 在函数内部使用函数;
2 三目运算符
3 取余 % 不支持
4 if(a==b) fn(); 这种写法不支持;需要写成
if(a==b)
{
fn();
}
这样才行

5 末尾加分号也不行
if(a==b)
{
fn();
};

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions