This repository has been archived on 2023-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
mightyscape-1.1-deprecated/extensions/fablabchemnitz/papercraft/openjscad/node_modules/brace/test/fixtures/coffee-editor.js

17 lines
412 B
JavaScript

var ace = require('../..');
require('../../mode/coffee');
require('../../theme/vibrant_ink');
var editor = ace.edit('coffee-editor');
editor.setTheme('ace/theme/vibrant_ink');
editor.getSession().setMode('ace/mode/coffee');
editor.setValue([
'# Coffee'
, 'square = (x) -> x * x'
, ''
, '# below line has an error which is annotated'
, 'square = x -> x * '
].join('\n')
);
editor.clearSelection();