From 272c7c5dd04feb54806b92d88dc1a5029cddc397 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Tue, 29 Jun 2021 11:37:14 +0200 Subject: Webpack build for frontend --- .../main/js/xtext/services/ValidationService.js | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 language-web/src/main/js/xtext/services/ValidationService.js (limited to 'language-web/src/main/js/xtext/services/ValidationService.js') diff --git a/language-web/src/main/js/xtext/services/ValidationService.js b/language-web/src/main/js/xtext/services/ValidationService.js new file mode 100644 index 00000000..85c9953d --- /dev/null +++ b/language-web/src/main/js/xtext/services/ValidationService.js @@ -0,0 +1,33 @@ +/******************************************************************************* + * Copyright (c) 2015 itemis AG (http://www.itemis.eu) and others. + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + *******************************************************************************/ + +define(['xtext/services/XtextService', 'jquery'], function(XtextService, jQuery) { + + /** + * Service class for validation. + */ + function ValidationService(serviceUrl, resourceId) { + this.initialize(serviceUrl, 'validate', resourceId); + }; + + ValidationService.prototype = new XtextService(); + + ValidationService.prototype._checkPreconditions = function(editorContext, params) { + return this._state === undefined; + } + + ValidationService.prototype._onConflict = function(editorContext, cause) { + this.setState(undefined); + return { + suppressForcedUpdate: true + }; + }; + + return ValidationService; +}); \ No newline at end of file -- cgit v1.2.3-70-g09d2