error: Invalid token encountered. Found token type ID, token content from

error: Invalid token encountered. Found token type ID, token content from

我正在使用 Visual Code 并输入了来自 Jolie 网站的示例代码。当我尝试使用“jolie CalculatorService.ol”从终端 运行 服务时,出现此错误

错误:遇到无效的令牌。找到令牌类型 ID,令牌内容来自

CalculatorService.ol 以此代码开头

from CalculatorInterfaceModule import CalculatorInterface {
    service CalculatorService {
        
        inputPort CalculatorPort {
            location: "socket://localhost:8000"
            protocol: http {format = "json" }
            interfaces: CalculatorInterface
        }
...

我看到另一个 post 建议检查编码问题。不是。

感谢任何线索来确定问题?

欢迎来到朱莉社区!

你在第一行末尾多了一个“{”,可能就是这个。 此外,如果该模块不在包路径中,导入语句中的“CalculatorInterfaceModule”可能需要是“.CalculatorInterfaceModule”(注意点,意思是“在这个目录中”)。

您的其余代码看起来不错,所以如果您仍然遇到问题,我可能需要查看更多内容。

顺便说一下,为了确保这一语法需要 Jolie 版本 1.10。