bbrehm

Results 17 comments of bbrehm

I'm currently working on getting some kind of schema into the prototype. The idea for that is the following: When making a FlatGraph, we pass a schema template (node factories,...

cf https://shipilev.net/jvm/anatomy-quarks/10-string-intern/ The tl;dr is that `String.intern()` is unfortunately sharing tables with JVM-internals (e.g. strings from class-file constant pools) and is probably inappropriate; and unfortunately there is no ready-made alternative...

>How about some scans on joern instead? Sounds good to me. Just run a couple different scans after another. My main point about mesh was that we must include multiple...

I updated your test branch (cf https://github.com/ShiftLeftSecurity/codepropertygraph/commit/7ddee61110b0888058dda450005f2ca5582618ef) to now work with https://github.com/ShiftLeftSecurity/fuzzyc2cpg/pull/137/commits/02b270218f11304784ea33c808febeba8dc3c64b As you see in the updated test, we have a minor problem: Currently nobody guarantees that a TYPE...

This looks great so far! :+1:

That is a good observation: The new way the APIs are set up suck when used from java. To give a little context on _why_ we set it up this...

Thanks for the examples! Some minor thoughts on the issue: 1. `public interface AstNode extends AstNodeBase` -- the issue is that java StoredNode is a class, so in java the...