5304884d5efc53175e70a453c3bf522a2de4f062c2a0a0e0789fa56ed69a1bc206edab7949fd67a8e95a26f2fe6d43604ba3f6b66a9f9ef21803ff9857f2d7 854 B

1234567891011121314151617181920212223
  1. /*!-----------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
  4. * Released under the MIT license
  5. * https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
  6. *-----------------------------------------------------------------------------*/
  7. // src/basic-languages/postiats/postiats.contribution.ts
  8. import { registerLanguage } from "../_.contribution.js";
  9. registerLanguage({
  10. id: "postiats",
  11. extensions: [".dats", ".sats", ".hats"],
  12. aliases: ["ATS", "ATS/Postiats"],
  13. loader: () => {
  14. if (false) {
  15. return new Promise((resolve, reject) => {
  16. __require(["vs/basic-languages/postiats/postiats"], resolve, reject);
  17. });
  18. } else {
  19. return import("./postiats.js");
  20. }
  21. }
  22. });