@@ -19,7 +19,7 @@ $helper->header('Test getters (default)');
19
19
$ helper ->method_matches_with_output ($ obj , 'resourceName ' , 'test ' );
20
20
$ helper ->method_matches_with_output ($ obj , 'resourceLineOffset ' , 0 );
21
21
$ helper ->method_matches_with_output ($ obj , 'resourceColumnOffset ' , 0 );
22
- $ helper ->method_matches_with_output ($ obj , 'scriptID ' , 0 );
22
+ $ helper ->method_matches_with_output ($ obj , 'scriptId ' , 0 );
23
23
$ helper ->method_matches_with_output ($ obj , 'sourceMapUrl ' , '' );
24
24
$ helper ->method_matches_instanceof ($ obj , 'options ' , V8 \ScriptOriginOptions::class);
25
25
$ helper ->space ();
@@ -43,7 +43,7 @@ $helper->header('Test getters');
43
43
$ helper ->method_matches_with_output ($ obj , 'resourceName ' , 'test ' );
44
44
$ helper ->method_matches_with_output ($ obj , 'resourceLineOffset ' , 1 );
45
45
$ helper ->method_matches_with_output ($ obj , 'resourceColumnOffset ' , 2 );
46
- $ helper ->method_matches_with_output ($ obj , 'scriptID ' , 3 );
46
+ $ helper ->method_matches_with_output ($ obj , 'scriptId ' , 3 );
47
47
$ helper ->method_matches_with_output ($ obj , 'sourceMapUrl ' , 'map ' );
48
48
$ helper ->method_matches_instanceof ($ obj , 'options ' , V8 \ScriptOriginOptions::class);
49
49
$ helper ->space ();
@@ -91,7 +91,7 @@ Test getters (default):
91
91
V8\ScriptOrigin::resourceName() matches expected 'test'
92
92
V8\ScriptOrigin::resourceLineOffset() matches expected 0
93
93
V8\ScriptOrigin::resourceColumnOffset() matches expected 0
94
- V8\ScriptOrigin::scriptID () matches expected 0
94
+ V8\ScriptOrigin::scriptId () matches expected 0
95
95
V8\ScriptOrigin::sourceMapUrl() matches expected ''
96
96
V8\ScriptOrigin::options() result is instance of V8\ScriptOriginOptions
97
97
@@ -134,7 +134,7 @@ Test getters:
134
134
V8\ScriptOrigin::resourceName() matches expected 'test'
135
135
V8\ScriptOrigin::resourceLineOffset() matches expected 1
136
136
V8\ScriptOrigin::resourceColumnOffset() matches expected 2
137
- V8\ScriptOrigin::scriptID () matches expected 3
137
+ V8\ScriptOrigin::scriptId () matches expected 3
138
138
V8\ScriptOrigin::sourceMapUrl() matches expected 'map'
139
139
V8\ScriptOrigin::options() result is instance of V8\ScriptOriginOptions
140
140
0 commit comments