summaryrefslogtreecommitdiff
path: root/test/lisp/progmodes/js-resources/jsx-quote.jsx
blob: 1b2c6528734a4aee54511a1821eecb328e2402f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// JSX text node values should be strings, but only JS string syntax
// is considered, so quote marks delimit strings like normal, with
// disastrous results (https://github.com/mooz/js2-mode/issues/409).
function Bug() {
  return <div>C'est Montréal</div>;
}
function Test(foo = /'/,
              bar = 123) {}

// This test is in a separate file because it can break other tests
// when indenting the whole buffer (not sure why).

// Local Variables:
// indent-tabs-mode: nil
// js-indent-level: 2
// End: