Skip to content

Commit 317f566

Browse files
authored
fix(babel-plugin): apply the right context for string static methods (#615)
* fix(babel-plugin): apply the right context for string static methods * chore: format code
1 parent a6723ed commit 317f566

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

packages/babel-plugin/__tests__/evaluation/stylex-evaluation-test.js

+12
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,17 @@ describe('custom path evaluation works as expected', () => {
229229
c: 4,
230230
});
231231
});
232+
233+
test('Methods called by string should be bind', () => {
234+
expect(
235+
evaluateFirstStatement(
236+
'const x = "".concat("10px"," ").concat("10px");',
237+
{},
238+
),
239+
).toBe('10px 10px');
240+
expect(evaluateFirstStatement('const x = "abc".charCodeAt(0);', {})).toBe(
241+
97,
242+
);
243+
});
232244
});
233245
});

packages/babel-plugin/src/utils/evaluate-path.js

+3
Original file line numberDiff line numberDiff line change
@@ -692,6 +692,9 @@ function _evaluate(path: NodePath<>, state: State): any {
692692
) {
693693
const val: number | string = object.node.value;
694694
func = (val as $FlowFixMe)[property.node.name];
695+
if (typeof val === 'string') {
696+
context = object.node.value;
697+
}
695698
}
696699

697700
if (func == null) {

0 commit comments

Comments
 (0)