We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2658 引入的Bug。 @Allan-QLB
下面这两个命令都会识别为重定向:
watch demo.MathGame '<init>' watch demo.MathGame <init>
@Test public void testSeparateRedirect2() { String[] expectedTextTokenValue = new String[]{"watch", "demo.MathGame", "<init>"}; String cmd = "watch demo.MathGame '<init>'"; List<CliToken> actualTokens = CliTokenImpl.tokenize(cmd); assertEqualsIgnoreBlank(expectedTextTokenValue, actualTokens); Assert.assertEquals(cmd, concatRaw(actualTokens)); }
The text was updated successfully, but these errors were encountered:
fix alibaba#2933
9ce2a55
目前没有太好的修复办法,需要整体重构 token 的解析。考虑先把 #2658 revert 。
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
#2658 引入的Bug。 @Allan-QLB
下面这两个命令都会识别为重定向:
The text was updated successfully, but these errors were encountered: