Skip to content

Commit

Permalink
fix: Don't fail on Function message names (#1119)
Browse files Browse the repository at this point in the history
  • Loading branch information
halkeye authored Oct 6, 2024
1 parent 2ed7956 commit da048a1
Show file tree
Hide file tree
Showing 5 changed files with 471 additions and 1 deletion.
1 change: 1 addition & 0 deletions integration/test-1110/parameters.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
useExactTypes=false
8 changes: 8 additions & 0 deletions integration/test-1110/test-1110-test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { UserRule } from "./test-1110";

describe("test-1110", () => {
it("Able to create a partial user rule with reserved word messages", () => {
const simple: UserRule = UserRule.fromPartial({ UUID: "foo" });
expect(simple).toBeTruthy();
});
});
29 changes: 29 additions & 0 deletions integration/test-1110/test-1110.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
syntax = "proto3";

message UserRule {
// just some fake rule for testing
string UUID = 1 [json_name = "uuid"];
}

message Object {
string namespace = 1;
string name = 2;
}

message Boolean {
string namespace = 1;
string name = 2;
}

message Symbol {
string namespace = 1;
string name = 2;
}

message Function {
string namespace = 1;
string name = 2;
}

service APIService {
}
Loading

0 comments on commit da048a1

Please sign in to comment.