Skip to content

Commit

Permalink
added regex ignore capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
dhilpipre committed Jan 17, 2025
1 parent 521dffa commit 0fd0008
Show file tree
Hide file tree
Showing 17 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion Kotlin-Coroutines_1.7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

apply plugin: 'java'

// targetCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9

dependencies {
implementation group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-core', version: '1.7.3'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import com.newrelic.agent.bridge.AgentBridge;
import com.newrelic.api.agent.NewRelic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import com.newrelic.api.agent.Token;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import com.newrelic.agent.bridge.AgentBridge;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import com.newrelic.agent.bridge.AgentBridge;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import com.newrelic.agent.bridge.AgentBridge;
import com.newrelic.api.agent.NewRelic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.newrelic.instrumentation.kotlin.coroutines_17;
package com.newrelic.instrumentation.kotlin.coroutines_19;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import com.newrelic.api.agent.Trace;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction1Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction1Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction2Wrapper;

import kotlin.jvm.functions.Function1;
import kotlin.jvm.functions.Function2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import com.newrelic.api.agent.weaver.MatchType;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

import kotlin.coroutines.Continuation;
import kotlin.coroutines.CoroutineContext;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import com.newrelic.api.agent.Trace;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRContinuationWrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRCoroutineToken;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRContinuationWrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRCoroutineToken;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

import kotlin.Unit;
import kotlin.coroutines.Continuation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import com.newrelic.api.agent.weaver.MatchType;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRRunnable;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRRunnable;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

import kotlin.coroutines.CoroutineContext;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import com.newrelic.api.agent.weaver.MatchType;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRRunnable;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRRunnable;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

@Weave(type = MatchType.BaseClass)
abstract class DispatcherExecutor {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import com.newrelic.api.agent.weaver.NewField;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

@Weave
public abstract class EventLoopImplBase {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.newrelic.api.agent.Trace;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

import kotlin.Unit;
import kotlin.coroutines.Continuation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import com.newrelic.api.agent.TracedMethod;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRContinuationWrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction1Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRContinuationWrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction1Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

import kotlin.coroutines.Continuation;
import kotlin.coroutines.jvm.internal.SuspendFunction;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import com.newrelic.api.agent.TracedMethod;
import com.newrelic.api.agent.weaver.Weave;
import com.newrelic.api.agent.weaver.Weaver;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRContinuationWrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_17.Utils;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRContinuationWrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.NRFunction2Wrapper;
import com.newrelic.instrumentation.kotlin.coroutines_19.Utils;

import kotlin.coroutines.Continuation;
import kotlin.coroutines.jvm.internal.SuspendFunction;
Expand Down

0 comments on commit 0fd0008

Please sign in to comment.