Need help to dump AST for testing

i want to dump AST as I want to use this test file but i keep getting this error even tho the file exists

can someone help me out please

It seems TestPropertyWrapperMacro.swift is not in your current working directory.

You can run pwd to get your current working directory and ls to list directory contents to verify it.

Or you can specify the full path instead of relative path of your intended file.

A working example :down_arrow:

echo 'print("Hello")' >> example.swift

ls -lah
total 8
drwx------@   3 kyle  staff    96B Apr  2 21:26 .
drwx------@ 408 kyle  staff    13K Apr  2 21:26 ..
-rw-r--r--@   1 kyle  staff    15B Apr  2 21:26 example.swift

swiftc -dump-ast example.swift 
(source_file "example.swift"
  (top_level_code_decl range=[example.swift:1:1 - line:1:14]
    (brace_stmt implicit range=[example.swift:1:1 - line:1:14]
      (call_expr type="()" location=example.swift:1:1 range=[example.swift:1:1 - line:1:14] nothrow isolation_crossing="none"
        (declref_expr type="(Any..., String, String) -> ()" location=example.swift:1:1 range=[example.swift:1:1 - line:1:1] decl="Swift.(file).print(_:separator:terminator:)" function_ref=single)
        (argument_list labels="_:separator:terminator:"
          (argument
            (vararg_expansion_expr implicit type="Any..." location=example.swift:1:7 range=[example.swift:1:7 - line:1:7]
              (array_expr implicit type="Any..." location=example.swift:1:7 range=[example.swift:1:7 - line:1:7] initializer="**NULL**"
                (erasure_expr implicit type="Any" location=example.swift:1:7 range=[example.swift:1:7 - line:1:7]
                  (builtin_conformance type="String" protocol="Copyable")
                  (builtin_conformance type="String" protocol="Escapable")
                  (string_literal_expr type="String" location=example.swift:1:7 range=[example.swift:1:7 - line:1:7] encoding=utf8 value="Hello" builtin_initializer="Swift.(file).String extension.init(_builtinStringLiteral:utf8CodeUnitCount:isASCII:)" initializer="**NULL**")))))
          (argument label="separator"
            (default_argument_expr implicit type="String" location=example.swift:1:6 range=[example.swift:1:6 - line:1:6] default_args_owner="Swift.(file).print(_:separator:terminator:)" param=1))
          (argument label="terminator"
            (default_argument_expr implicit type="String" location=example.swift:1:6 range=[example.swift:1:6 - line:1:6] default_args_owner="Swift.(file).print(_:separator:terminator:)" param=2)))))))

do i just copy the pathname of my test file and then change the "cd pathname" and then run this command would this work ?

1 Like

Yes. It should resolve your issue.