Home | History | Annotate | Download | only in builder

Lines Matching refs:end

46     // The end location is exclusive, it should point to the codeAddress of the instruction immediately after the last
48 @Nonnull public final Label end;
50 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable String exceptionType,
53 this.end = end;
57 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nullable TypeReference exceptionType,
60 this.end = end;
64 public BuilderTryBlock(@Nonnull Label start, @Nonnull Label end, @Nonnull Label handler) {
66 this.end = end;
75 return end.getCodeAddress() - start.getCodeAddress();