Giter Site home page Giter Site logo

Comments (2)

kaby76 avatar kaby76 commented on June 2, 2024 1

This change fixes at least the "absolute path" problem (ignore Log.debug() calls).

--- a/src/backend/facade.ts
+++ b/src/backend/facade.ts
@@ -7,6 +7,7 @@ import * as fs from "fs";
 import * as path from "path";

 import { Vocabulary } from "antlr4ng";
+import { Log } from "../frontend/Log.js";

 export interface IContextEntry {
     context: SourceContext;
@@ -85,13 +86,22 @@ export class AntlrFacade {
     }

     public loadGrammar(fileName: string, source?: string): SourceContext {
+Log.debug("LOADGRAMMAR " + fileName);
         let contextEntry = this.sourceContexts.get(fileName);
         if (!contextEntry) {
             if (!source) {
                 try {
-                    fs.statSync(path.join(process.cwd(), fileName));
+                       if (path.isAbsolute(fileName)) {
+                               fs.statSync(fileName);
+                       } else {
+                               fs.statSync(path.join(process.cwd(), fileName));
+                       }
                     source = fs.readFileSync(fileName, "utf8");
+Log.debug("fileName = '" + fileName + "'");
+Log.debug("source = '" + source + "'");
                 } catch (e) {
+Log.debug("CAUGHT LOADGRAMMAR empty");
+Log.debug("fileName = '" + fileName + "'");
                     source = "";
                 }
             }

But, it makes more sense to use the workspace folder rather than current working directory when joining paths.

	let folder = workspace.workspaceFolders ? workspace.workspaceFolders[0] : undefined;
	let folderPath = folder ? folder.uri.fsPath : undefined;

For all practical purposes, for a grammar file like "Test.g4", I cannot get input parameter fileName to be a relative path. It always appears to be an absolute path.

from vscode-antlr4.

mike-lischke avatar mike-lischke commented on June 2, 2024

That might be a duplicate of #221. There's a problem with absolute paths, yes. I'll look at that coming weekend.

from vscode-antlr4.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.