8000 Increase IAST propagation to StringBuffer subSequence by Mariovido · Pull Request #8038 · DataDog/dd-trace-java · GitHub
[go: up one dir, main page]

Skip to content

Increase IAST propagation to StringBuff 8000 er subSequence #8038

New issue

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

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add subsequence for the stringbuffer
  • Loading branch information
Mariovido committed Nov 29, 2024
commit de38cb1db25b6bec8ec49cca865b8996d829a9b9
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ public static String afterSubstring(
}

@CallSite.After("java.lang.CharSequence java.lang.StringBuilder.subSequence(int, int)")
@CallSite.After("java.lang.CharSequence java.lang.StringBuffer.subSequence(int, int)")
public static CharSequence afterSubSequence(
@CallSite.This final CharSequence self,
@CallSite.Argument final int beginIndex,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ class StringBuilderCallSiteTest extends AgentTestRunner {
where:
type | suite | param | beginIndex | endIndex | expected
"builder" | new TestStringBuilderSuite() | sb('012345') | 1 | 5 | '1234'
"buffer" | new TestStringBufferSuite() | sbf('012345') | 1 | 5 | '1234'
}

private static class BrokenToString {
Expand Down
Loading
0