sassoftware / vscode-sas-extension

This SAS Extension for Visual Studio Code provides support for the SAS language, including features such as SAS syntax highlighting, code completion, hover help, code folding, outline, SAS code snippets and run SAS code.
https://sassoftware.github.io/vscode-sas-extension/
Apache License 2.0
117 stars 47 forks source link

[Syntax] proc dynamicLinear (SAS Econometrics) #1167

Open Criptic opened 1 month ago

Criptic commented 1 month ago

Describe the bug Add support for proc dynamicLinear in the syntax highlighting, auto completion and syntax help.

Steps to reproduce * Showcase the enhanced proc; proc dynamicLinear data=casuser.test_data; id t; model y1-y5; parentalSet inAdjacency=casuser.adj_table; filter out(percentiles=(2.5 50 97.5))=casuser.out_filter back=0 /* Write the covariances of samples of in-sample and out-of-sample forecasting observations to an output table */ outCoVariance=casuser.out_coVariance; forecast out(percentiles=(2.5 50 97.5))=casuser.out_forecast lead=3; initialDistribution inMean=casuser.init_mean inCovariance=casuser.init_cov shape=(positions=(1 2 5) values=(20 30 40)); discountFactor deltaGamma=(positions=(3 5) values=(0.997 0.998)); run; quit;

Expected behavior Provide highlighting, help and auto completion

Screenshots image

Environment (please complete the following information): Client OS: Windows 11 Extension version: v.1.10.1 SAS version: Viya 2024.08

Additional context Add any other context about the problem here.