Skip to content

Commit

Permalink
Function filters for java standard library (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avgor46 authored Jul 13, 2023
1 parent 1882f49 commit 70dbdd4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion libcasr/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,18 @@ limitations under the License.

/// Regular expressions for java functions to be ignored.
pub const STACK_FRAME_FUNCTION_IGNORE_REGEXES_JAVA: &[&str] = &[
// TODO
r"^java\.base",
r"^java\.lang",
r"^java\.beans",
r"^java\.time",
r"^java\.math",
r"^java\.rmi",
r"^java\.net",
r"^java\.security",
r"^java\.text",
r"^java\.awt",
r"^java\.n?io",
r"^javax\.",
];

/// Regular expressions for python functions to be ignored.
Expand Down

0 comments on commit 70dbdd4

Please sign in to comment.