├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── build-vsix.yml │ ├── deploy-doc.yml │ ├── package.yml │ ├── pr.yml │ └── translations.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ContributorAgreement.txt ├── LICENSE ├── README.md ├── SUPPORT.md ├── client ├── package-lock.json ├── package.json ├── src │ ├── browser │ │ └── extension.ts │ ├── commands │ │ ├── authorize.ts │ │ ├── closeSession.ts │ │ ├── new.ts │ │ ├── profile.ts │ │ ├── run.ts │ │ └── toggleLineComment.ts │ ├── components │ │ ├── APIProvider.ts │ │ ├── AuthProvider.ts │ │ ├── CAHelper.ts │ │ ├── ContentNavigator │ │ │ ├── ContentAdapterFactory.ts │ │ │ ├── ContentDataProvider.ts │ │ │ ├── ContentModel.ts │ │ │ ├── const.ts │ │ │ ├── convert.ts │ │ │ ├── index.ts │ │ │ ├── mime-types.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── ExtensionContext.ts │ │ ├── LibraryNavigator │ │ │ ├── LibraryAdapterFactory.ts │ │ │ ├── LibraryDataProvider.ts │ │ │ ├── LibraryModel.ts │ │ │ ├── PaginatedResultSet.ts │ │ │ ├── const.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── ResultPanel │ │ │ ├── ResultPanel.ts │ │ │ ├── ResultPanelSubscriptionProvider.ts │ │ │ └── index.ts │ │ ├── StatusBarItem.ts │ │ ├── SubscriptionProvider.ts │ │ ├── logViewer │ │ │ ├── DiagnosticCodeActionProvider.ts │ │ │ ├── ProblemProcessor.ts │ │ │ ├── index.ts │ │ │ ├── logParser.ts │ │ │ └── sasDiagnostics.ts │ │ ├── notebook │ │ │ ├── Controller.ts │ │ │ ├── Serializer.ts │ │ │ ├── exporters │ │ │ │ ├── index.ts │ │ │ │ ├── templates │ │ │ │ │ ├── dark.css │ │ │ │ │ ├── default.html │ │ │ │ │ └── light.css │ │ │ │ ├── toHTML.ts │ │ │ │ └── toSAS.ts │ │ │ └── renderers │ │ │ │ ├── HTMLRenderer.ts │ │ │ │ └── LogRenderer.ts │ │ ├── profile.ts │ │ ├── tasks │ │ │ ├── SasTaskProvider.ts │ │ │ └── SasTasks.ts │ │ └── utils │ │ │ ├── SASCodeDocument.ts │ │ │ ├── SASCodeDocumentHelper.ts │ │ │ ├── deferred.ts │ │ │ ├── settings.ts │ │ │ └── throttle.ts │ ├── connection │ │ ├── index.ts │ │ ├── itc │ │ │ ├── CodeRunner.ts │ │ │ ├── ItcLibraryAdapter.ts │ │ │ ├── ItcServerAdapter.ts │ │ │ ├── LineParser.ts │ │ │ ├── const.ts │ │ │ ├── index.ts │ │ │ ├── script.ts │ │ │ ├── types.ts │ │ │ └── util.ts │ │ ├── rest │ │ │ ├── RestContentAdapter.ts │ │ │ ├── RestLibraryAdapter.ts │ │ │ ├── RestServerAdapter.ts │ │ │ ├── api │ │ │ │ ├── common.ts │ │ │ │ ├── compute.ts │ │ │ │ ├── configuration.ts │ │ │ │ ├── files.ts │ │ │ │ └── folders.ts │ │ │ ├── auth.ts │ │ │ ├── common.ts │ │ │ ├── context.ts │ │ │ ├── identities.ts │ │ │ ├── index.ts │ │ │ ├── job.ts │ │ │ ├── server.ts │ │ │ ├── session.ts │ │ │ └── util.ts │ │ ├── session.ts │ │ ├── ssh │ │ │ ├── auth.ts │ │ │ ├── const.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── studio │ │ │ └── index.ts │ │ └── util.ts │ ├── node │ │ └── extension.ts │ ├── panels │ │ ├── DataViewer.ts │ │ ├── TablePropertiesViewer.ts │ │ └── WebviewManager.ts │ ├── store │ │ ├── index.ts │ │ ├── log │ │ │ ├── actions.ts │ │ │ ├── initialState.ts │ │ │ ├── selectors.ts │ │ │ └── store.ts │ │ ├── middleware.ts │ │ ├── run │ │ │ ├── actions.ts │ │ │ ├── initialState.ts │ │ │ ├── selectors.ts │ │ │ └── store.ts │ │ └── selectors.ts │ └── webview │ │ ├── ColumnHeader.tsx │ │ ├── ColumnMenu.tsx │ │ ├── DataViewer.css │ │ ├── DataViewer.tsx │ │ ├── GridMenu.tsx │ │ ├── TablePropertiesViewer.css │ │ ├── TablePropertiesViewer.ts │ │ ├── index.ts │ │ ├── localize.ts │ │ ├── useDataViewer.ts │ │ └── useTheme.ts ├── test │ ├── components │ │ ├── ContentNavigator │ │ │ ├── ContentDataProvider.test.ts │ │ │ ├── convert.test.ts │ │ │ └── utils.test.ts │ │ ├── LibraryNavigator │ │ │ ├── LibraryDataProvider.test.ts │ │ │ └── PaginatedResultSet.test.ts │ │ ├── logViewer │ │ │ ├── log.ts │ │ │ └── logParser.test.ts │ │ ├── notebook │ │ │ ├── exporter.test.ts │ │ │ └── serializer.test.ts │ │ ├── profile │ │ │ └── profile.test.ts │ │ └── util │ │ │ ├── SASCodeDocument.test.ts │ │ │ └── SASCodeDocumentHelper.test.ts │ ├── connection │ │ ├── itc │ │ │ ├── Coderunner.test.ts │ │ │ ├── ItcLibraryAdapter.test.ts │ │ │ ├── index.test.ts │ │ │ └── util.test.ts │ │ ├── session.test.ts │ │ └── ssh │ │ │ ├── auth.test.ts │ │ │ └── index.test.ts │ ├── extension.test.ts │ ├── index.ts │ ├── languageServer │ │ └── formatter.test.ts │ ├── runTest.ts │ ├── store │ │ ├── log │ │ │ └── actions.test.ts │ │ └── run │ │ │ └── actions.test.ts │ └── utils.ts ├── testFixture │ ├── SampleCode.sas │ ├── SampleCode2.sas │ ├── TestFolder │ │ ├── SampleCode1.sas │ │ └── TestSubFolder │ │ │ └── SampleCode2.sas │ ├── formatter │ │ ├── expected.sas │ │ └── unformatted.sas │ ├── keyContent.txt │ ├── sasnb_export.sas │ ├── sasnb_export.sasnb │ ├── test.ipynb │ ├── test_ipynb.flw │ ├── test_multi.sasnb │ ├── test_multi_node.flw │ ├── test_multi_swimlane.flw │ ├── test_single.sasnb │ ├── test_single_node.flw │ └── test_single_swimlane.flw └── tsconfig.json ├── doc ├── profileExamples │ └── viya4.json └── scripts │ └── itc-connection-test.ps1 ├── eslint.config.mjs ├── icons ├── dark │ ├── DateDark.svg │ ├── arrow-down.svg │ ├── arrow-up.svg │ ├── characterTypeDark.svg │ ├── check.svg │ ├── chevron-right.svg │ ├── connectorNodeIndicator.svg │ ├── currencyDark.svg │ ├── deleteDark.svg │ ├── favoritesFolderDark.svg │ ├── flowStepDark.svg │ ├── folderDark.svg │ ├── importOtherDark.svg │ ├── jobTemplateDark.svg │ ├── libraryDark.svg │ ├── more.svg │ ├── numericTypeDark.svg │ ├── pdfModelDark.svg │ ├── readOnlyLibraryDark.svg │ ├── sasDataSetDark.svg │ ├── sasFoldersDark.svg │ ├── sasIndicatorDark.svg │ ├── sasProgramFileDark.svg │ ├── serverDark.svg │ ├── submitSASCode.svg │ ├── tableHeaderCharacterTypeDark.svg │ ├── tableHeaderCurrencyDark.svg │ ├── tableHeaderDateDark.svg │ ├── tableHeaderNumericTypeDark.svg │ ├── taskContainerDark.svg │ ├── taskDark.svg │ ├── userWorkspaceDark.svg │ ├── vennDiagramAndDark.svg │ └── workLibraryDark.svg ├── light │ ├── DateLight.svg │ ├── arrow-down.svg │ ├── arrow-up.svg │ ├── characterTypeLight.svg │ ├── check.svg │ ├── chevron-right.svg │ ├── connectorNodeIndicator.svg │ ├── currencyLight.svg │ ├── deleteLight.svg │ ├── favoritesFolderLight.svg │ ├── flowStepLight.svg │ ├── folderLight.svg │ ├── importOtherLight.svg │ ├── jobTemplateLight.svg │ ├── libraryLight.svg │ ├── more.svg │ ├── numericTypeLight.svg │ ├── pdfModelLight.svg │ ├── readOnlyLibraryLight.svg │ ├── sasDataSetLight.svg │ ├── sasFoldersLight.svg │ ├── sasIndicatorLight.svg │ ├── sasProgramFileLight.svg │ ├── serverLight.svg │ ├── submitSASCode.svg │ ├── tableHeaderCharacterTypeLight.svg │ ├── tableHeaderCurrencyLight.svg │ ├── tableHeaderDateLight.svg │ ├── tableHeaderNumericTypeLight.svg │ ├── taskContainerLight.svg │ ├── taskLight.svg │ ├── userWorkspaceLight.svg │ ├── vennDiagramAndLight.svg │ └── workLibraryLight.svg └── sas.png ├── l10n ├── bundle.l10n.de.json ├── bundle.l10n.es.json ├── bundle.l10n.fr.json ├── bundle.l10n.it.json ├── bundle.l10n.ja.json ├── bundle.l10n.ko.json ├── bundle.l10n.pl.json ├── bundle.l10n.pt-br.json ├── bundle.l10n.zh-cn.json └── bundle.l10n.zh-tw.json ├── language-configuration.json ├── package.json ├── package.nls.de.json ├── package.nls.es.json ├── package.nls.fr.json ├── package.nls.it.json ├── package.nls.ja.json ├── package.nls.json ├── package.nls.ko.json ├── package.nls.pl.json ├── package.nls.pt-br.json ├── package.nls.zh-cn.json ├── package.nls.zh-tw.json ├── prettier.config.js ├── pull_request_template.md ├── server ├── data │ ├── DS2ContextPrompt.json │ ├── DS2Functions.json │ ├── DS2Keywords.json │ ├── HashPackageMethods.json │ ├── MacroDefinitionOptions.json │ ├── ODS_Tagsets.json │ ├── Procedures │ │ ├── DATA.json │ │ ├── DEFINE_EVENT.json │ │ ├── DEFINE_TAGSET.json │ │ ├── MACRO.json │ │ ├── ODS.json │ │ └── STATGRAPH.json │ ├── SASARMMacros.json │ ├── SASAutoVariables.json │ ├── SASAutocallMacros.json │ ├── SASCallRoutines.json │ ├── SASColorValues.json │ ├── SASContextPrompt.json │ ├── SASDataSetOptions.json │ ├── SASDataStepOptions.json │ ├── SASDataStepOptions2.json │ ├── SASDataStepStatements.json │ ├── SASFormats.json │ ├── SASFunctions.json │ ├── SASGlobalProcedureStatements.json │ ├── SASGlobalStatements.json │ ├── SASInformats.json │ ├── SASMacroFunctions.json │ ├── SASMacroStatements.json │ ├── SASProcedures.json │ ├── SQLKeywords.json │ ├── Statements │ │ ├── ABORT.json │ │ ├── ARRAY.json │ │ ├── ATTRIB.json │ │ ├── AXIS.json │ │ ├── CAS.json │ │ ├── CASLIB.json │ │ ├── ENDRSUBMIT.json │ │ ├── FILE.json │ │ ├── FILENAME.json │ │ ├── FOOTNOTE.json │ │ ├── FORMAT.json │ │ ├── GOPTIONS.json │ │ ├── INFILE.json │ │ ├── INFORMAT.json │ │ ├── KILLTASK.json │ │ ├── LEGEND.json │ │ ├── LIBNAME.json │ │ ├── LISTTASK.json │ │ ├── LOCK.json │ │ ├── NOTE.json │ │ ├── ODS.json │ │ ├── OPTIONS.json │ │ ├── PATTERN.json │ │ ├── RDISPLAY.json │ │ ├── RGET.json │ │ ├── RSUBMIT.json │ │ ├── RUN.json │ │ ├── SIGNOFF.json │ │ ├── SIGNON.json │ │ ├── SYMBOL.json │ │ ├── SYSTASK.json │ │ ├── TITLE.json │ │ ├── WAITFOR.json │ │ └── WHERE.json │ ├── StatisticsKeywords.json │ ├── StyleAttributes.json │ ├── StyleElements.json │ ├── StyleLocations.json │ └── WHERE.json ├── messagebundle.properties ├── messagebundle_ar.properties ├── messagebundle_cs.properties ├── messagebundle_da.properties ├── messagebundle_de.properties ├── messagebundle_el.properties ├── messagebundle_es.properties ├── messagebundle_fi.properties ├── messagebundle_fr.properties ├── messagebundle_he.properties ├── messagebundle_hr.properties ├── messagebundle_hu.properties ├── messagebundle_it.properties ├── messagebundle_iw.properties ├── messagebundle_ja.properties ├── messagebundle_ko.properties ├── messagebundle_nb.properties ├── messagebundle_nl.properties ├── messagebundle_no.properties ├── messagebundle_pl.properties ├── messagebundle_pt.properties ├── messagebundle_pt_BR.properties ├── messagebundle_ru.properties ├── messagebundle_sh.properties ├── messagebundle_sk.properties ├── messagebundle_sl.properties ├── messagebundle_sr.properties ├── messagebundle_sv.properties ├── messagebundle_th.properties ├── messagebundle_tr.properties ├── messagebundle_uk.properties ├── messagebundle_zh_CN.properties ├── messagebundle_zh_TW.properties ├── package-lock.json ├── package.json ├── pubsdata │ ├── Functions │ │ └── en │ │ │ ├── base.json │ │ │ └── macro.json │ ├── Procedures │ │ └── en │ │ │ ├── ACCELERATOR.json │ │ │ ├── ACECLUS.json │ │ │ ├── ADAPTIVEREG.json │ │ │ ├── ANOM.json │ │ │ ├── ANOVA.json │ │ │ ├── APPEND.json │ │ │ ├── ARIMA.json │ │ │ ├── ASSESS.json │ │ │ ├── ASSESSBIAS.json │ │ │ ├── ASTORE.json │ │ │ ├── AUTOREG.json │ │ │ ├── BART.json │ │ │ ├── BCHOICE.json │ │ │ ├── BINNING.json │ │ │ ├── BNET.json │ │ │ ├── BOM.json │ │ │ ├── BOOLRULE.json │ │ │ ├── BOXPLOT.json │ │ │ ├── CALIS.json │ │ │ ├── CALLRFC.json │ │ │ ├── CANCORR.json │ │ │ ├── CANDISC.json │ │ │ ├── CAPABILITY.json │ │ │ ├── CARDINALITY.json │ │ │ ├── CAS.json │ │ │ ├── CASUTIL.json │ │ │ ├── CATALOG.json │ │ │ ├── CATMOD.json │ │ │ ├── CATTRANSFORM.json │ │ │ ├── CAUSALDISCOVERY.json │ │ │ ├── CAUSALMED.json │ │ │ ├── CAUSALTRT.json │ │ │ ├── CCDM.json │ │ │ ├── CCOPULA.json │ │ │ ├── CESM.json │ │ │ ├── CIMPORT.json │ │ │ ├── CLP.json │ │ │ ├── CLUSTER.json │ │ │ ├── CNTSELECT.json │ │ │ ├── COMPARE.json │ │ │ ├── COMPILE.json │ │ │ ├── COMPUTAB.json │ │ │ ├── CONDENSEIMAGES.json │ │ │ ├── CONTENTS.json │ │ │ ├── COPULA.json │ │ │ ├── COPY.json │ │ │ ├── CORR.json │ │ │ ├── CORRELATION.json │ │ │ ├── CORRESP.json │ │ │ ├── COUNTREG.json │ │ │ ├── CPANEL.json │ │ │ ├── CPM.json │ │ │ ├── CPORT.json │ │ │ ├── CQLIM.json │ │ │ ├── CSPADE.json │ │ │ ├── CSPATIALREG.json │ │ │ ├── CSSM.json │ │ │ ├── CUSUM.json │ │ │ ├── DATA.json │ │ │ ├── DATAMETRICS.json │ │ │ ├── DATASETS.json │ │ │ ├── DATASOURCE.json │ │ │ ├── DATEKEYS.json │ │ │ ├── DBCSTAB.json │ │ │ ├── DEEPPRICE.json │ │ │ ├── DELETE.json │ │ │ ├── DFIL.json │ │ │ ├── DISCRIM.json │ │ │ ├── DISPLAYIMAGES.json │ │ │ ├── DISTANCE.json │ │ │ ├── DLMZEXPORT.json │ │ │ ├── DLMZSCORE.json │ │ │ ├── DLMZTRAIN.json │ │ │ ├── DMSRVADM.json │ │ │ ├── DMSRVDATASVC.json │ │ │ ├── DMSRVPROCESSSVC.json │ │ │ ├── DOCUMENT.json │ │ │ ├── DOWNLOAD.json │ │ │ ├── DQLOCLST.json │ │ │ ├── DQMATCH.json │ │ │ ├── DQSCHEME.json │ │ │ ├── DS2.json │ │ │ ├── DSTODS2.json │ │ │ ├── DTREE.json │ │ │ ├── DYNAMICLINEAR.json │ │ │ ├── EEL.json │ │ │ ├── EFA.json │ │ │ ├── ENTROPY.json │ │ │ ├── ERCOMPSTORE.json │ │ │ ├── ERQUERY.json │ │ │ ├── ERUPSERT.json │ │ │ ├── ESM.json │ │ │ ├── EXPAND.json │ │ │ ├── EXPORT.json │ │ │ ├── FACTEX.json │ │ │ ├── FACTMAC.json │ │ │ ├── FACTOR.json │ │ │ ├── FASTCLUS.json │ │ │ ├── FASTKNN.json │ │ │ ├── FCMP.json │ │ │ ├── FEDSQL.json │ │ │ ├── FISM.json │ │ │ ├── FITTEDQNET.json │ │ │ ├── FMM.json │ │ │ ├── FMTC2ITM.json │ │ │ ├── FONTREG.json │ │ │ ├── FOREST.json │ │ │ ├── FORMAT.json │ │ │ ├── FREQ.json │ │ │ ├── FREQTAB.json │ │ │ ├── G3D.json │ │ │ ├── G3GRID.json │ │ │ ├── GA.json │ │ │ ├── GAM.json │ │ │ ├── GAMMOD.json │ │ │ ├── GAMPL.json │ │ │ ├── GAMSELECT.json │ │ │ ├── GANNO.json │ │ │ ├── GANTT.json │ │ │ ├── GATEWAY.json │ │ │ ├── GBARLINE.json │ │ │ ├── GCHART.json │ │ │ ├── GCONTOUR.json │ │ │ ├── GDEVICE.json │ │ │ ├── GEE.json │ │ │ ├── GENMOD.json │ │ │ ├── GENSELECT.json │ │ │ ├── GEOCODE.json │ │ │ ├── GFONT.json │ │ │ ├── GINSIDE.json │ │ │ ├── GKPI.json │ │ │ ├── GLIMMIX.json │ │ │ ├── GLM.json │ │ │ ├── GLMMOD.json │ │ │ ├── GLMPOWER.json │ │ │ ├── GLMSELECT.json │ │ │ ├── GMAP.json │ │ │ ├── GMM.json │ │ │ ├── GOPTIONS.json │ │ │ ├── GPCLASS.json │ │ │ ├── GPLOT.json │ │ │ ├── GPREG.json │ │ │ ├── GPROJECT.json │ │ │ ├── GRADAR.json │ │ │ ├── GRADBOOST.json │ │ │ ├── GREDUCE.json │ │ │ ├── GREMOVE.json │ │ │ ├── GREPLAY.json │ │ │ ├── GROOVY.json │ │ │ ├── GSLIDE.json │ │ │ ├── GTILE.json │ │ │ ├── GVARCLUS.json │ │ │ ├── HADOOP.json │ │ │ ├── HMM.json │ │ │ ├── HP4SCORE.json │ │ │ ├── HPBIN.json │ │ │ ├── HPCANDISC.json │ │ │ ├── HPCDM.json │ │ │ ├── HPCLUS.json │ │ │ ├── HPCORR.json │ │ │ ├── HPCOUNTREG.json │ │ │ ├── HPDECIDE.json │ │ │ ├── HPDMDB.json │ │ │ ├── HPDS2.json │ │ │ ├── HPEXPORT.json │ │ │ ├── HPF.json │ │ │ ├── HPFARIMASPEC.json │ │ │ ├── HPFDIAGNOSE.json │ │ │ ├── HPFENGINE.json │ │ │ ├── HPFESMSPEC.json │ │ │ ├── HPFEVENTS.json │ │ │ ├── HPFEXMSPEC.json │ │ │ ├── HPFIDMSPEC.json │ │ │ ├── HPFMM.json │ │ │ ├── HPFOREST.json │ │ │ ├── HPFRECON.json │ │ │ ├── HPFSELECT.json │ │ │ ├── HPFTEMPRECON.json │ │ │ ├── HPFUCMSPEC.json │ │ │ ├── HPGENSELECT.json │ │ │ ├── HPIMPUTE.json │ │ │ ├── HPLMIXED.json │ │ │ ├── HPLOGISTIC.json │ │ │ ├── HPMIXED.json │ │ │ ├── HPNEURAL.json │ │ │ ├── HPNLMOD.json │ │ │ ├── HPPANEL.json │ │ │ ├── HPPLS.json │ │ │ ├── HPPRINCOMP.json │ │ │ ├── HPQLIM.json │ │ │ ├── HPQUANTSELECT.json │ │ │ ├── HPREDUCE.json │ │ │ ├── HPREG.json │ │ │ ├── HPSAMPLE.json │ │ │ ├── HPSEVERITY.json │ │ │ ├── HPSPLIT.json │ │ │ ├── HPSUMMARY.json │ │ │ ├── HTTP.json │ │ │ ├── ICA.json │ │ │ ├── ICLIFETEST.json │ │ │ ├── ICPHREG.json │ │ │ ├── IML.json │ │ │ ├── IMPORT.json │ │ │ ├── INBREED.json │ │ │ ├── IRP.json │ │ │ ├── IRT.json │ │ │ ├── JAVAINFO.json │ │ │ ├── JSON.json │ │ │ ├── KCLUS.json │ │ │ ├── KDE.json │ │ │ ├── KPCA.json │ │ │ ├── KRIGE2D.json │ │ │ ├── LATTICE.json │ │ │ ├── LIFEREG.json │ │ │ ├── LIFETEST.json │ │ │ ├── LMIXED.json │ │ │ ├── LOAN.json │ │ │ ├── LOCALEDATA.json │ │ │ ├── LOESS.json │ │ │ ├── LOGISTIC.json │ │ │ ├── LOGSELECT.json │ │ │ ├── LUA.json │ │ │ ├── MACONTROL.json │ │ │ ├── MAPIMPORT.json │ │ │ ├── MBANALYSIS.json │ │ │ ├── MBC.json │ │ │ ├── MCMC.json │ │ │ ├── MDC.json │ │ │ ├── MDS.json │ │ │ ├── MDSUMMARY.json │ │ │ ├── MEANS.json │ │ │ ├── MI.json │ │ │ ├── MIANALYZE.json │ │ │ ├── MIGRATE.json │ │ │ ├── MIRP.json │ │ │ ├── MIXED.json │ │ │ ├── MKTATTRIBUTION.json │ │ │ ├── MODECLUS.json │ │ │ ├── MODEL.json │ │ │ ├── MODELMATRIX.json │ │ │ ├── MTLEARN.json │ │ │ ├── MTS.json │ │ │ ├── MTSSCORE.json │ │ │ ├── MULTTEST.json │ │ │ ├── MVOUTLIER.json │ │ │ ├── MVPDIAGNOSE.json │ │ │ ├── MVPMODEL.json │ │ │ ├── MVPMONITOR.json │ │ │ ├── MWPCA.json │ │ │ ├── NESTED.json │ │ │ ├── NETDRAW.json │ │ │ ├── NETWORK.json │ │ │ ├── NLIN.json │ │ │ ├── NLMIXED.json │ │ │ ├── NLMOD.json │ │ │ ├── NNET.json │ │ │ ├── NPAR1WAY.json │ │ │ ├── ODSLIST.json │ │ │ ├── ODSTABLE.json │ │ │ ├── ODSTEXT.json │ │ │ ├── OPTBINNING.json │ │ │ ├── OPTEX.json │ │ │ ├── OPTGRAPH.json │ │ │ ├── OPTIONS.json │ │ │ ├── OPTLOAD.json │ │ │ ├── OPTLP.json │ │ │ ├── OPTLSO.json │ │ │ ├── OPTMILP.json │ │ │ ├── OPTMODEL.json │ │ │ ├── OPTNET.json │ │ │ ├── OPTNETWORK.json │ │ │ ├── OPTQP.json │ │ │ ├── OPTSAVE.json │ │ │ ├── ORTHOREG.json │ │ │ ├── PANEL.json │ │ │ ├── PARETO.json │ │ │ ├── PARTITION.json │ │ │ ├── PATHING.json │ │ │ ├── PCA.json │ │ │ ├── PDLREG.json │ │ │ ├── PHREG.json │ │ │ ├── PHSELECT.json │ │ │ ├── PLAN.json │ │ │ ├── PLM.json │ │ │ ├── PLS.json │ │ │ ├── PLSMOD.json │ │ │ ├── PM.json │ │ │ ├── POWER.json │ │ │ ├── PREFIXSPAN.json │ │ │ ├── PRINCOMP.json │ │ │ ├── PRINQUAL.json │ │ │ ├── PRINT.json │ │ │ ├── PRINTTO.json │ │ │ ├── PROBIT.json │ │ │ ├── PROTO.json │ │ │ ├── PRTDEF.json │ │ │ ├── PRTEXP.json │ │ │ ├── PSMATCH.json │ │ │ ├── PWENCODE.json │ │ │ ├── PYTHON.json │ │ │ ├── QDEVICE.json │ │ │ ├── QKB.json │ │ │ ├── QLIM.json │ │ │ ├── QTRSELECT.json │ │ │ ├── QUANTLIFE.json │ │ │ ├── QUANTREG.json │ │ │ ├── QUANTSELECT.json │ │ │ ├── RANK.json │ │ │ ├── REG.json │ │ │ ├── REGISTERMODEL.json │ │ │ ├── REGISTRY.json │ │ │ ├── REGSELECT.json │ │ │ ├── RELIABILITY.json │ │ │ ├── REPORT.json │ │ │ ├── RISK.json │ │ │ ├── ROBUSTREG.json │ │ │ ├── RPCA.json │ │ │ ├── RSREG.json │ │ │ ├── S3.json │ │ │ ├── SANDWICH.json │ │ │ ├── SCAPROC.json │ │ │ ├── SCORE.json │ │ │ ├── SCOREACCEL.json │ │ │ ├── SEMISUPLEARN.json │ │ │ ├── SEQDESIGN.json │ │ │ ├── SEQMC.json │ │ │ ├── SEQTEST.json │ │ │ ├── SEVERITY.json │ │ │ ├── SEVSELECT.json │ │ │ ├── SGMAP.json │ │ │ ├── SGPANEL.json │ │ │ ├── SGPIE.json │ │ │ ├── SGPLOT.json │ │ │ ├── SGRENDER.json │ │ │ ├── SGSCATTER.json │ │ │ ├── SHAPLEY.json │ │ │ ├── SIM2D.json │ │ │ ├── SIMILARITY.json │ │ │ ├── SIMLIN.json │ │ │ ├── SIMNORMAL.json │ │ │ ├── SIMSYSTEM.json │ │ │ ├── SMCALIB.json │ │ │ ├── SMPROJECT.json │ │ │ ├── SMSCORE.json │ │ │ ├── SMSELECT.json │ │ │ ├── SMSPEC.json │ │ │ ├── SORT.json │ │ │ ├── SPARSEML.json │ │ │ ├── SPC.json │ │ │ ├── SPDO.json │ │ │ ├── SPECTRA.json │ │ │ ├── SPP.json │ │ │ ├── SQL.json │ │ │ ├── SQOOP.json │ │ │ ├── SSM.json │ │ │ ├── STANDARD.json │ │ │ ├── STATESPACE.json │ │ │ ├── STDIZE.json │ │ │ ├── STDRATE.json │ │ │ ├── STEPDISC.json │ │ │ ├── STREAM.json │ │ │ ├── STYLEGAN.json │ │ │ ├── SUMMARY.json │ │ │ ├── SUPERLEARNER.json │ │ │ ├── SURVEYFREQ.json │ │ │ ├── SURVEYIMPUTE.json │ │ │ ├── SURVEYLOGISTIC.json │ │ │ ├── SURVEYMEANS.json │ │ │ ├── SURVEYPHREG.json │ │ │ ├── SURVEYREG.json │ │ │ ├── SURVEYSELECT.json │ │ │ ├── SVDD.json │ │ │ ├── SVMACHINE.json │ │ │ ├── SYSLIN.json │ │ │ ├── TABULARGAN.json │ │ │ ├── TABULATE.json │ │ │ ├── TEMPLATE.json │ │ │ ├── TEXTCATEGORY.json │ │ │ ├── TEXTCATSCORE.json │ │ │ ├── TEXTCONCEPT.json │ │ │ ├── TEXTCONCEPTSCORE.json │ │ │ ├── TEXTMINE.json │ │ │ ├── TEXTNEARDUP.json │ │ │ ├── TEXTPROFILE.json │ │ │ ├── TEXTRULE.json │ │ │ ├── TEXTSENTIMENT.json │ │ │ ├── TEXTSENTSCORE.json │ │ │ ├── TEXTSUMMARY.json │ │ │ ├── TIMEID.json │ │ │ ├── TIMESERIES.json │ │ │ ├── TMODEL.json │ │ │ ├── TMSCORE.json │ │ │ ├── TPSPLINE.json │ │ │ ├── TRANSPOSE.json │ │ │ ├── TRANSREG.json │ │ │ ├── TRANTAB.json │ │ │ ├── TREE.json │ │ │ ├── TREESPLIT.json │ │ │ ├── TSCSREG.json │ │ │ ├── TSCUSTINT.json │ │ │ ├── TSGLOBALRECON.json │ │ │ ├── TSINFO.json │ │ │ ├── TSMODEL.json │ │ │ ├── TSMODREPO.json │ │ │ ├── TSNE.json │ │ │ ├── TSRECONCILE.json │ │ │ ├── TSSELECTLAG.json │ │ │ ├── TTEST.json │ │ │ ├── UCM.json │ │ │ ├── UNIVARIATE.json │ │ │ ├── UPLOAD.json │ │ │ ├── VARCLUS.json │ │ │ ├── VARCOMP.json │ │ │ ├── VARIMPUTE.json │ │ │ ├── VARIOGRAM.json │ │ │ ├── VARMAX.json │ │ │ ├── VARREDUCE.json │ │ │ ├── X11.json │ │ │ ├── X12.json │ │ │ └── XSL.json │ ├── Statements │ │ └── en │ │ │ ├── datastep.json │ │ │ ├── global.json │ │ │ ├── macro.json │ │ │ └── standalone.json │ └── procedures.json ├── src │ ├── browser │ │ ├── ResLoader.ts │ │ └── server.ts │ ├── node │ │ ├── ResLoader.ts │ │ └── server.ts │ ├── python │ │ ├── PyrightLanguageProvider.ts │ │ ├── browser │ │ │ ├── PyrightLanguageProviderBrowser.ts │ │ │ ├── fakeFileSystem.ts │ │ │ ├── typeShed.ts │ │ │ └── typeshed-loader │ │ │ │ └── index.js │ │ ├── node │ │ │ └── PyrightLanguageProviderNode.ts │ │ ├── sas │ │ │ └── sas2py.pyi │ │ └── utils.ts │ ├── sas │ │ ├── CodeZoneManager.ts │ │ ├── CompletionProvider.ts │ │ ├── FormatOnTypeProvider.ts │ │ ├── LanguageServiceProvider.ts │ │ ├── Lexer.ts │ │ ├── LexerEx.ts │ │ ├── Model.ts │ │ ├── SyntaxDataProvider.ts │ │ ├── SyntaxProvider.ts │ │ ├── formatter │ │ │ ├── index.ts │ │ │ ├── parser.ts │ │ │ └── printer.ts │ │ └── utils.ts │ └── server.ts ├── test │ └── embedded_lang │ │ └── embedded_lang.test.ts ├── testFixture │ └── embedded_lang │ │ ├── proc_lua.sas │ │ ├── proc_python.sas │ │ └── proc_sql.sas └── tsconfig.json ├── snippets └── proc-snippets.json ├── syntaxes ├── sas.tmLanguage.json └── sassql.tmLanguage.json ├── themes ├── dark_plus.json ├── dark_vs.json ├── hc_black.json ├── light_plus.json ├── light_vs.json ├── sas-dark-color-theme.json ├── sas-highcontrast-color-theme.json └── sas-light-color-theme.json ├── tools ├── build.mjs ├── check-copyright.mjs ├── locale.mjs └── preparePubsdata.js ├── tsconfig.json ├── webpack.config.js └── website ├── .gitignore ├── README.md ├── babel.config.js ├── docs ├── Configurations │ ├── Profiles │ │ ├── _category_.json │ │ ├── additional.md │ │ ├── index.md │ │ ├── sas9iom.md │ │ ├── sas9local.md │ │ ├── sas9ssh.md │ │ └── viya.md │ ├── _category_.json │ ├── index.md │ └── sasLog.md ├── Features │ ├── _category_.json │ ├── accessContent.md │ ├── accessLibraries.md │ ├── accessServer.md │ ├── errorsWarnings.md │ ├── index.md │ ├── running.md │ ├── runningTask.md │ ├── sasCodeEditing.md │ └── sasNotebook.md ├── README.md ├── faq.md ├── installation.md └── matrix.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── src └── css │ └── custom.css ├── static ├── .nojekyll └── images │ ├── NoActiveProfilesStatusBar.png │ ├── StatusBarProfileItem.png │ ├── context-definition.png │ ├── featuresGlance.png │ ├── formatter.gif │ ├── libraries.png │ ├── quickFix.png │ ├── runCode2.png │ ├── sas.png │ ├── sasContent.png │ ├── sasNotebook.png │ ├── signatureHelp.gif │ ├── vsCodeChangeTheme2.gif │ ├── vsCodeFoldAndOutline.gif │ ├── vsCodeRegionFunction.gif │ ├── vsCodeSnippets.gif │ ├── vsCodeSyntaxAssist2.gif │ └── vsCodeTypeAhead.gif └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-vsix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/workflows/build-vsix.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/workflows/deploy-doc.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.github/workflows/translations.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ContributorAgreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/ContributorAgreement.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/browser/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/browser/extension.ts -------------------------------------------------------------------------------- /client/src/commands/authorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/commands/authorize.ts -------------------------------------------------------------------------------- /client/src/commands/closeSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/commands/closeSession.ts -------------------------------------------------------------------------------- /client/src/commands/new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/commands/new.ts -------------------------------------------------------------------------------- /client/src/commands/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/commands/profile.ts -------------------------------------------------------------------------------- /client/src/commands/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/commands/run.ts -------------------------------------------------------------------------------- /client/src/commands/toggleLineComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/commands/toggleLineComment.ts -------------------------------------------------------------------------------- /client/src/components/APIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/APIProvider.ts -------------------------------------------------------------------------------- /client/src/components/AuthProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/AuthProvider.ts -------------------------------------------------------------------------------- /client/src/components/CAHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/CAHelper.ts -------------------------------------------------------------------------------- /client/src/components/ExtensionContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/ExtensionContext.ts -------------------------------------------------------------------------------- /client/src/components/ResultPanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/ResultPanel/index.ts -------------------------------------------------------------------------------- /client/src/components/StatusBarItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/StatusBarItem.ts -------------------------------------------------------------------------------- /client/src/components/SubscriptionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/SubscriptionProvider.ts -------------------------------------------------------------------------------- /client/src/components/logViewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/logViewer/index.ts -------------------------------------------------------------------------------- /client/src/components/logViewer/logParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/logViewer/logParser.ts -------------------------------------------------------------------------------- /client/src/components/notebook/Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/notebook/Controller.ts -------------------------------------------------------------------------------- /client/src/components/notebook/Serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/notebook/Serializer.ts -------------------------------------------------------------------------------- /client/src/components/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/profile.ts -------------------------------------------------------------------------------- /client/src/components/tasks/SasTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/tasks/SasTasks.ts -------------------------------------------------------------------------------- /client/src/components/utils/deferred.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/utils/deferred.ts -------------------------------------------------------------------------------- /client/src/components/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/utils/settings.ts -------------------------------------------------------------------------------- /client/src/components/utils/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/components/utils/throttle.ts -------------------------------------------------------------------------------- /client/src/connection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/index.ts -------------------------------------------------------------------------------- /client/src/connection/itc/CodeRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/CodeRunner.ts -------------------------------------------------------------------------------- /client/src/connection/itc/ItcServerAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/ItcServerAdapter.ts -------------------------------------------------------------------------------- /client/src/connection/itc/LineParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/LineParser.ts -------------------------------------------------------------------------------- /client/src/connection/itc/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/const.ts -------------------------------------------------------------------------------- /client/src/connection/itc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/index.ts -------------------------------------------------------------------------------- /client/src/connection/itc/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/script.ts -------------------------------------------------------------------------------- /client/src/connection/itc/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/types.ts -------------------------------------------------------------------------------- /client/src/connection/itc/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/itc/util.ts -------------------------------------------------------------------------------- /client/src/connection/rest/api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/api/common.ts -------------------------------------------------------------------------------- /client/src/connection/rest/api/compute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/api/compute.ts -------------------------------------------------------------------------------- /client/src/connection/rest/api/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/api/files.ts -------------------------------------------------------------------------------- /client/src/connection/rest/api/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/api/folders.ts -------------------------------------------------------------------------------- /client/src/connection/rest/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/auth.ts -------------------------------------------------------------------------------- /client/src/connection/rest/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/common.ts -------------------------------------------------------------------------------- /client/src/connection/rest/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/context.ts -------------------------------------------------------------------------------- /client/src/connection/rest/identities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/identities.ts -------------------------------------------------------------------------------- /client/src/connection/rest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/index.ts -------------------------------------------------------------------------------- /client/src/connection/rest/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/job.ts -------------------------------------------------------------------------------- /client/src/connection/rest/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/server.ts -------------------------------------------------------------------------------- /client/src/connection/rest/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/session.ts -------------------------------------------------------------------------------- /client/src/connection/rest/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/rest/util.ts -------------------------------------------------------------------------------- /client/src/connection/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/session.ts -------------------------------------------------------------------------------- /client/src/connection/ssh/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/ssh/auth.ts -------------------------------------------------------------------------------- /client/src/connection/ssh/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/ssh/const.ts -------------------------------------------------------------------------------- /client/src/connection/ssh/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/ssh/index.ts -------------------------------------------------------------------------------- /client/src/connection/ssh/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/ssh/types.ts -------------------------------------------------------------------------------- /client/src/connection/studio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/studio/index.ts -------------------------------------------------------------------------------- /client/src/connection/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/connection/util.ts -------------------------------------------------------------------------------- /client/src/node/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/node/extension.ts -------------------------------------------------------------------------------- /client/src/panels/DataViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/panels/DataViewer.ts -------------------------------------------------------------------------------- /client/src/panels/TablePropertiesViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/panels/TablePropertiesViewer.ts -------------------------------------------------------------------------------- /client/src/panels/WebviewManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/panels/WebviewManager.ts -------------------------------------------------------------------------------- /client/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/index.ts -------------------------------------------------------------------------------- /client/src/store/log/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/log/actions.ts -------------------------------------------------------------------------------- /client/src/store/log/initialState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/log/initialState.ts -------------------------------------------------------------------------------- /client/src/store/log/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/log/selectors.ts -------------------------------------------------------------------------------- /client/src/store/log/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/log/store.ts -------------------------------------------------------------------------------- /client/src/store/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/middleware.ts -------------------------------------------------------------------------------- /client/src/store/run/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/run/actions.ts -------------------------------------------------------------------------------- /client/src/store/run/initialState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/run/initialState.ts -------------------------------------------------------------------------------- /client/src/store/run/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/run/selectors.ts -------------------------------------------------------------------------------- /client/src/store/run/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/run/store.ts -------------------------------------------------------------------------------- /client/src/store/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/store/selectors.ts -------------------------------------------------------------------------------- /client/src/webview/ColumnHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/ColumnHeader.tsx -------------------------------------------------------------------------------- /client/src/webview/ColumnMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/ColumnMenu.tsx -------------------------------------------------------------------------------- /client/src/webview/DataViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/DataViewer.css -------------------------------------------------------------------------------- /client/src/webview/DataViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/DataViewer.tsx -------------------------------------------------------------------------------- /client/src/webview/GridMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/GridMenu.tsx -------------------------------------------------------------------------------- /client/src/webview/TablePropertiesViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/TablePropertiesViewer.css -------------------------------------------------------------------------------- /client/src/webview/TablePropertiesViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/TablePropertiesViewer.ts -------------------------------------------------------------------------------- /client/src/webview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/index.ts -------------------------------------------------------------------------------- /client/src/webview/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/localize.ts -------------------------------------------------------------------------------- /client/src/webview/useDataViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/useDataViewer.ts -------------------------------------------------------------------------------- /client/src/webview/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/src/webview/useTheme.ts -------------------------------------------------------------------------------- /client/test/components/logViewer/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/components/logViewer/log.ts -------------------------------------------------------------------------------- /client/test/connection/itc/Coderunner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/connection/itc/Coderunner.test.ts -------------------------------------------------------------------------------- /client/test/connection/itc/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/connection/itc/index.test.ts -------------------------------------------------------------------------------- /client/test/connection/itc/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/connection/itc/util.test.ts -------------------------------------------------------------------------------- /client/test/connection/session.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/connection/session.test.ts -------------------------------------------------------------------------------- /client/test/connection/ssh/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/connection/ssh/auth.test.ts -------------------------------------------------------------------------------- /client/test/connection/ssh/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/connection/ssh/index.test.ts -------------------------------------------------------------------------------- /client/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/extension.test.ts -------------------------------------------------------------------------------- /client/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/index.ts -------------------------------------------------------------------------------- /client/test/languageServer/formatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/languageServer/formatter.test.ts -------------------------------------------------------------------------------- /client/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/runTest.ts -------------------------------------------------------------------------------- /client/test/store/log/actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/store/log/actions.test.ts -------------------------------------------------------------------------------- /client/test/store/run/actions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/store/run/actions.test.ts -------------------------------------------------------------------------------- /client/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/test/utils.ts -------------------------------------------------------------------------------- /client/testFixture/SampleCode.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/SampleCode.sas -------------------------------------------------------------------------------- /client/testFixture/SampleCode2.sas: -------------------------------------------------------------------------------- 1 | proc iml; 2 | FF = FINV(0.05/32,2,29); 3 | print FF; 4 | quit; 5 | -------------------------------------------------------------------------------- /client/testFixture/TestFolder/SampleCode1.sas: -------------------------------------------------------------------------------- 1 | proc print data=sashelp.air; 2 | -------------------------------------------------------------------------------- /client/testFixture/TestFolder/TestSubFolder/SampleCode2.sas: -------------------------------------------------------------------------------- 1 | proc print data=sashelp.aarfm; 2 | -------------------------------------------------------------------------------- /client/testFixture/formatter/expected.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/formatter/expected.sas -------------------------------------------------------------------------------- /client/testFixture/formatter/unformatted.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/formatter/unformatted.sas -------------------------------------------------------------------------------- /client/testFixture/keyContent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/keyContent.txt -------------------------------------------------------------------------------- /client/testFixture/sasnb_export.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/sasnb_export.sas -------------------------------------------------------------------------------- /client/testFixture/sasnb_export.sasnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/sasnb_export.sasnb -------------------------------------------------------------------------------- /client/testFixture/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test.ipynb -------------------------------------------------------------------------------- /client/testFixture/test_ipynb.flw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_ipynb.flw -------------------------------------------------------------------------------- /client/testFixture/test_multi.sasnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_multi.sasnb -------------------------------------------------------------------------------- /client/testFixture/test_multi_node.flw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_multi_node.flw -------------------------------------------------------------------------------- /client/testFixture/test_multi_swimlane.flw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_multi_swimlane.flw -------------------------------------------------------------------------------- /client/testFixture/test_single.sasnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_single.sasnb -------------------------------------------------------------------------------- /client/testFixture/test_single_node.flw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_single_node.flw -------------------------------------------------------------------------------- /client/testFixture/test_single_swimlane.flw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/testFixture/test_single_swimlane.flw -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /doc/profileExamples/viya4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/doc/profileExamples/viya4.json -------------------------------------------------------------------------------- /doc/scripts/itc-connection-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/doc/scripts/itc-connection-test.ps1 -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /icons/dark/DateDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/DateDark.svg -------------------------------------------------------------------------------- /icons/dark/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/arrow-down.svg -------------------------------------------------------------------------------- /icons/dark/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/arrow-up.svg -------------------------------------------------------------------------------- /icons/dark/characterTypeDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/characterTypeDark.svg -------------------------------------------------------------------------------- /icons/dark/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/check.svg -------------------------------------------------------------------------------- /icons/dark/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/chevron-right.svg -------------------------------------------------------------------------------- /icons/dark/connectorNodeIndicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/connectorNodeIndicator.svg -------------------------------------------------------------------------------- /icons/dark/currencyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/currencyDark.svg -------------------------------------------------------------------------------- /icons/dark/deleteDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/deleteDark.svg -------------------------------------------------------------------------------- /icons/dark/favoritesFolderDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/favoritesFolderDark.svg -------------------------------------------------------------------------------- /icons/dark/flowStepDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/flowStepDark.svg -------------------------------------------------------------------------------- /icons/dark/folderDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/folderDark.svg -------------------------------------------------------------------------------- /icons/dark/importOtherDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/importOtherDark.svg -------------------------------------------------------------------------------- /icons/dark/jobTemplateDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/jobTemplateDark.svg -------------------------------------------------------------------------------- /icons/dark/libraryDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/libraryDark.svg -------------------------------------------------------------------------------- /icons/dark/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/more.svg -------------------------------------------------------------------------------- /icons/dark/numericTypeDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/numericTypeDark.svg -------------------------------------------------------------------------------- /icons/dark/pdfModelDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/pdfModelDark.svg -------------------------------------------------------------------------------- /icons/dark/readOnlyLibraryDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/readOnlyLibraryDark.svg -------------------------------------------------------------------------------- /icons/dark/sasDataSetDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/sasDataSetDark.svg -------------------------------------------------------------------------------- /icons/dark/sasFoldersDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/sasFoldersDark.svg -------------------------------------------------------------------------------- /icons/dark/sasIndicatorDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/sasIndicatorDark.svg -------------------------------------------------------------------------------- /icons/dark/sasProgramFileDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/sasProgramFileDark.svg -------------------------------------------------------------------------------- /icons/dark/serverDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/serverDark.svg -------------------------------------------------------------------------------- /icons/dark/submitSASCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/submitSASCode.svg -------------------------------------------------------------------------------- /icons/dark/tableHeaderCharacterTypeDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/tableHeaderCharacterTypeDark.svg -------------------------------------------------------------------------------- /icons/dark/tableHeaderCurrencyDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/tableHeaderCurrencyDark.svg -------------------------------------------------------------------------------- /icons/dark/tableHeaderDateDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/tableHeaderDateDark.svg -------------------------------------------------------------------------------- /icons/dark/tableHeaderNumericTypeDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/tableHeaderNumericTypeDark.svg -------------------------------------------------------------------------------- /icons/dark/taskContainerDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/taskContainerDark.svg -------------------------------------------------------------------------------- /icons/dark/taskDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/taskDark.svg -------------------------------------------------------------------------------- /icons/dark/userWorkspaceDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/userWorkspaceDark.svg -------------------------------------------------------------------------------- /icons/dark/vennDiagramAndDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/vennDiagramAndDark.svg -------------------------------------------------------------------------------- /icons/dark/workLibraryDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/dark/workLibraryDark.svg -------------------------------------------------------------------------------- /icons/light/DateLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/DateLight.svg -------------------------------------------------------------------------------- /icons/light/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/arrow-down.svg -------------------------------------------------------------------------------- /icons/light/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/arrow-up.svg -------------------------------------------------------------------------------- /icons/light/characterTypeLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/characterTypeLight.svg -------------------------------------------------------------------------------- /icons/light/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/check.svg -------------------------------------------------------------------------------- /icons/light/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/chevron-right.svg -------------------------------------------------------------------------------- /icons/light/connectorNodeIndicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/connectorNodeIndicator.svg -------------------------------------------------------------------------------- /icons/light/currencyLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/currencyLight.svg -------------------------------------------------------------------------------- /icons/light/deleteLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/deleteLight.svg -------------------------------------------------------------------------------- /icons/light/favoritesFolderLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/favoritesFolderLight.svg -------------------------------------------------------------------------------- /icons/light/flowStepLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/flowStepLight.svg -------------------------------------------------------------------------------- /icons/light/folderLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/folderLight.svg -------------------------------------------------------------------------------- /icons/light/importOtherLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/importOtherLight.svg -------------------------------------------------------------------------------- /icons/light/jobTemplateLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/jobTemplateLight.svg -------------------------------------------------------------------------------- /icons/light/libraryLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/libraryLight.svg -------------------------------------------------------------------------------- /icons/light/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/more.svg -------------------------------------------------------------------------------- /icons/light/numericTypeLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/numericTypeLight.svg -------------------------------------------------------------------------------- /icons/light/pdfModelLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/pdfModelLight.svg -------------------------------------------------------------------------------- /icons/light/readOnlyLibraryLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/readOnlyLibraryLight.svg -------------------------------------------------------------------------------- /icons/light/sasDataSetLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/sasDataSetLight.svg -------------------------------------------------------------------------------- /icons/light/sasFoldersLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/sasFoldersLight.svg -------------------------------------------------------------------------------- /icons/light/sasIndicatorLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/sasIndicatorLight.svg -------------------------------------------------------------------------------- /icons/light/sasProgramFileLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/sasProgramFileLight.svg -------------------------------------------------------------------------------- /icons/light/serverLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/serverLight.svg -------------------------------------------------------------------------------- /icons/light/submitSASCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/submitSASCode.svg -------------------------------------------------------------------------------- /icons/light/tableHeaderCharacterTypeLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/tableHeaderCharacterTypeLight.svg -------------------------------------------------------------------------------- /icons/light/tableHeaderCurrencyLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/tableHeaderCurrencyLight.svg -------------------------------------------------------------------------------- /icons/light/tableHeaderDateLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/tableHeaderDateLight.svg -------------------------------------------------------------------------------- /icons/light/tableHeaderNumericTypeLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/tableHeaderNumericTypeLight.svg -------------------------------------------------------------------------------- /icons/light/taskContainerLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/taskContainerLight.svg -------------------------------------------------------------------------------- /icons/light/taskLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/taskLight.svg -------------------------------------------------------------------------------- /icons/light/userWorkspaceLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/userWorkspaceLight.svg -------------------------------------------------------------------------------- /icons/light/vennDiagramAndLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/vennDiagramAndLight.svg -------------------------------------------------------------------------------- /icons/light/workLibraryLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/light/workLibraryLight.svg -------------------------------------------------------------------------------- /icons/sas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/icons/sas.png -------------------------------------------------------------------------------- /l10n/bundle.l10n.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.de.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.es.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.fr.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.it.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.ja.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.ko.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.pl.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.pt-br.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.zh-cn.json -------------------------------------------------------------------------------- /l10n/bundle.l10n.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/l10n/bundle.l10n.zh-tw.json -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.de.json -------------------------------------------------------------------------------- /package.nls.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.es.json -------------------------------------------------------------------------------- /package.nls.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.fr.json -------------------------------------------------------------------------------- /package.nls.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.it.json -------------------------------------------------------------------------------- /package.nls.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.ja.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.json -------------------------------------------------------------------------------- /package.nls.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.ko.json -------------------------------------------------------------------------------- /package.nls.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.pl.json -------------------------------------------------------------------------------- /package.nls.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.pt-br.json -------------------------------------------------------------------------------- /package.nls.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.zh-cn.json -------------------------------------------------------------------------------- /package.nls.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/package.nls.zh-tw.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/prettier.config.js -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /server/data/DS2ContextPrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/DS2ContextPrompt.json -------------------------------------------------------------------------------- /server/data/DS2Functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/DS2Functions.json -------------------------------------------------------------------------------- /server/data/DS2Keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/DS2Keywords.json -------------------------------------------------------------------------------- /server/data/HashPackageMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/HashPackageMethods.json -------------------------------------------------------------------------------- /server/data/MacroDefinitionOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/MacroDefinitionOptions.json -------------------------------------------------------------------------------- /server/data/ODS_Tagsets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/ODS_Tagsets.json -------------------------------------------------------------------------------- /server/data/Procedures/DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Procedures/DATA.json -------------------------------------------------------------------------------- /server/data/Procedures/DEFINE_EVENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Procedures/DEFINE_EVENT.json -------------------------------------------------------------------------------- /server/data/Procedures/DEFINE_TAGSET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Procedures/DEFINE_TAGSET.json -------------------------------------------------------------------------------- /server/data/Procedures/MACRO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Procedures/MACRO.json -------------------------------------------------------------------------------- /server/data/Procedures/ODS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Procedures/ODS.json -------------------------------------------------------------------------------- /server/data/Procedures/STATGRAPH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Procedures/STATGRAPH.json -------------------------------------------------------------------------------- /server/data/SASARMMacros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASARMMacros.json -------------------------------------------------------------------------------- /server/data/SASAutoVariables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASAutoVariables.json -------------------------------------------------------------------------------- /server/data/SASAutocallMacros.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASAutocallMacros.json -------------------------------------------------------------------------------- /server/data/SASCallRoutines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASCallRoutines.json -------------------------------------------------------------------------------- /server/data/SASColorValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASColorValues.json -------------------------------------------------------------------------------- /server/data/SASContextPrompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASContextPrompt.json -------------------------------------------------------------------------------- /server/data/SASDataSetOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASDataSetOptions.json -------------------------------------------------------------------------------- /server/data/SASDataStepOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASDataStepOptions.json -------------------------------------------------------------------------------- /server/data/SASDataStepOptions2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASDataStepOptions2.json -------------------------------------------------------------------------------- /server/data/SASDataStepStatements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASDataStepStatements.json -------------------------------------------------------------------------------- /server/data/SASFormats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASFormats.json -------------------------------------------------------------------------------- /server/data/SASFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASFunctions.json -------------------------------------------------------------------------------- /server/data/SASGlobalProcedureStatements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASGlobalProcedureStatements.json -------------------------------------------------------------------------------- /server/data/SASGlobalStatements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASGlobalStatements.json -------------------------------------------------------------------------------- /server/data/SASInformats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASInformats.json -------------------------------------------------------------------------------- /server/data/SASMacroFunctions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASMacroFunctions.json -------------------------------------------------------------------------------- /server/data/SASMacroStatements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASMacroStatements.json -------------------------------------------------------------------------------- /server/data/SASProcedures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SASProcedures.json -------------------------------------------------------------------------------- /server/data/SQLKeywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/SQLKeywords.json -------------------------------------------------------------------------------- /server/data/Statements/ABORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/ABORT.json -------------------------------------------------------------------------------- /server/data/Statements/ARRAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/ARRAY.json -------------------------------------------------------------------------------- /server/data/Statements/ATTRIB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/ATTRIB.json -------------------------------------------------------------------------------- /server/data/Statements/AXIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/AXIS.json -------------------------------------------------------------------------------- /server/data/Statements/CAS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/CAS.json -------------------------------------------------------------------------------- /server/data/Statements/CASLIB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/CASLIB.json -------------------------------------------------------------------------------- /server/data/Statements/ENDRSUBMIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/ENDRSUBMIT.json -------------------------------------------------------------------------------- /server/data/Statements/FILE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/FILE.json -------------------------------------------------------------------------------- /server/data/Statements/FILENAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/FILENAME.json -------------------------------------------------------------------------------- /server/data/Statements/FOOTNOTE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/FOOTNOTE.json -------------------------------------------------------------------------------- /server/data/Statements/FORMAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/FORMAT.json -------------------------------------------------------------------------------- /server/data/Statements/GOPTIONS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/GOPTIONS.json -------------------------------------------------------------------------------- /server/data/Statements/INFILE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/INFILE.json -------------------------------------------------------------------------------- /server/data/Statements/INFORMAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/INFORMAT.json -------------------------------------------------------------------------------- /server/data/Statements/KILLTASK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/KILLTASK.json -------------------------------------------------------------------------------- /server/data/Statements/LEGEND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/LEGEND.json -------------------------------------------------------------------------------- /server/data/Statements/LIBNAME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/LIBNAME.json -------------------------------------------------------------------------------- /server/data/Statements/LISTTASK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/LISTTASK.json -------------------------------------------------------------------------------- /server/data/Statements/LOCK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/LOCK.json -------------------------------------------------------------------------------- /server/data/Statements/NOTE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/NOTE.json -------------------------------------------------------------------------------- /server/data/Statements/ODS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/ODS.json -------------------------------------------------------------------------------- /server/data/Statements/OPTIONS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/OPTIONS.json -------------------------------------------------------------------------------- /server/data/Statements/PATTERN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/PATTERN.json -------------------------------------------------------------------------------- /server/data/Statements/RDISPLAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/RDISPLAY.json -------------------------------------------------------------------------------- /server/data/Statements/RGET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/RGET.json -------------------------------------------------------------------------------- /server/data/Statements/RSUBMIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/RSUBMIT.json -------------------------------------------------------------------------------- /server/data/Statements/RUN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/RUN.json -------------------------------------------------------------------------------- /server/data/Statements/SIGNOFF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/SIGNOFF.json -------------------------------------------------------------------------------- /server/data/Statements/SIGNON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/SIGNON.json -------------------------------------------------------------------------------- /server/data/Statements/SYMBOL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/SYMBOL.json -------------------------------------------------------------------------------- /server/data/Statements/SYSTASK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/SYSTASK.json -------------------------------------------------------------------------------- /server/data/Statements/TITLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/TITLE.json -------------------------------------------------------------------------------- /server/data/Statements/WAITFOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/WAITFOR.json -------------------------------------------------------------------------------- /server/data/Statements/WHERE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/Statements/WHERE.json -------------------------------------------------------------------------------- /server/data/StatisticsKeywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/StatisticsKeywords.json -------------------------------------------------------------------------------- /server/data/StyleAttributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/StyleAttributes.json -------------------------------------------------------------------------------- /server/data/StyleElements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/StyleElements.json -------------------------------------------------------------------------------- /server/data/StyleLocations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/StyleLocations.json -------------------------------------------------------------------------------- /server/data/WHERE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/data/WHERE.json -------------------------------------------------------------------------------- /server/messagebundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle.properties -------------------------------------------------------------------------------- /server/messagebundle_ar.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_ar.properties -------------------------------------------------------------------------------- /server/messagebundle_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_cs.properties -------------------------------------------------------------------------------- /server/messagebundle_da.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_da.properties -------------------------------------------------------------------------------- /server/messagebundle_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_de.properties -------------------------------------------------------------------------------- /server/messagebundle_el.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_el.properties -------------------------------------------------------------------------------- /server/messagebundle_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_es.properties -------------------------------------------------------------------------------- /server/messagebundle_fi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_fi.properties -------------------------------------------------------------------------------- /server/messagebundle_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_fr.properties -------------------------------------------------------------------------------- /server/messagebundle_he.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_he.properties -------------------------------------------------------------------------------- /server/messagebundle_hr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_hr.properties -------------------------------------------------------------------------------- /server/messagebundle_hu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_hu.properties -------------------------------------------------------------------------------- /server/messagebundle_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_it.properties -------------------------------------------------------------------------------- /server/messagebundle_iw.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_iw.properties -------------------------------------------------------------------------------- /server/messagebundle_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_ja.properties -------------------------------------------------------------------------------- /server/messagebundle_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_ko.properties -------------------------------------------------------------------------------- /server/messagebundle_nb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_nb.properties -------------------------------------------------------------------------------- /server/messagebundle_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_nl.properties -------------------------------------------------------------------------------- /server/messagebundle_no.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_no.properties -------------------------------------------------------------------------------- /server/messagebundle_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_pl.properties -------------------------------------------------------------------------------- /server/messagebundle_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_pt.properties -------------------------------------------------------------------------------- /server/messagebundle_pt_BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_pt_BR.properties -------------------------------------------------------------------------------- /server/messagebundle_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_ru.properties -------------------------------------------------------------------------------- /server/messagebundle_sh.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_sh.properties -------------------------------------------------------------------------------- /server/messagebundle_sk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_sk.properties -------------------------------------------------------------------------------- /server/messagebundle_sl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_sl.properties -------------------------------------------------------------------------------- /server/messagebundle_sr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_sr.properties -------------------------------------------------------------------------------- /server/messagebundle_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_sv.properties -------------------------------------------------------------------------------- /server/messagebundle_th.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_th.properties -------------------------------------------------------------------------------- /server/messagebundle_tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_tr.properties -------------------------------------------------------------------------------- /server/messagebundle_uk.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_uk.properties -------------------------------------------------------------------------------- /server/messagebundle_zh_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_zh_CN.properties -------------------------------------------------------------------------------- /server/messagebundle_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/messagebundle_zh_TW.properties -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/package.json -------------------------------------------------------------------------------- /server/pubsdata/Functions/en/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Functions/en/base.json -------------------------------------------------------------------------------- /server/pubsdata/Functions/en/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Functions/en/macro.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ACECLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ACECLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ANOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ANOM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ANOVA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ANOVA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/APPEND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/APPEND.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ARIMA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ARIMA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ASSESS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ASSESS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ASSESSBIAS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ASSESSBIAS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ASTORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ASTORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/AUTOREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/AUTOREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BART.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BART.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BCHOICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BCHOICE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BINNING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BINNING.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BNET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BNET.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BOM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BOOLRULE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BOOLRULE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/BOXPLOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/BOXPLOT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CALIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CALIS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CALLRFC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CALLRFC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CANCORR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CANCORR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CANDISC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CANDISC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CAPABILITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CAPABILITY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CAS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CAS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CASUTIL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CASUTIL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CATALOG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CATALOG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CATMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CATMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CAUSALMED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CAUSALMED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CAUSALTRT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CAUSALTRT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CCDM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CCDM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CCOPULA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CCOPULA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CESM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CESM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CIMPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CIMPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CLP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CLP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CLUSTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CLUSTER.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CNTSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CNTSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/COMPARE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/COMPARE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/COMPILE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/COMPILE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/COMPUTAB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/COMPUTAB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CONTENTS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CONTENTS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/COPULA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/COPULA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/COPY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/COPY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CORR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CORR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CORRESP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CORRESP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/COUNTREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/COUNTREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CPANEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CPANEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CPM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CPM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CQLIM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CQLIM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CSPADE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CSPADE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CSSM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CSSM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/CUSUM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/CUSUM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DATA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DATASETS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DATASETS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DATASOURCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DATASOURCE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DATEKEYS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DATEKEYS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DBCSTAB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DBCSTAB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DEEPPRICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DEEPPRICE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DELETE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DELETE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DFIL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DFIL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DISCRIM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DISCRIM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DISTANCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DISTANCE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DLMZEXPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DLMZEXPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DLMZSCORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DLMZSCORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DLMZTRAIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DLMZTRAIN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DMSRVADM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DMSRVADM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DOCUMENT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DOCUMENT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DOWNLOAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DOWNLOAD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DQLOCLST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DQLOCLST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DQMATCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DQMATCH.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DQSCHEME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DQSCHEME.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DS2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DS2.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DSTODS2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DSTODS2.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/DTREE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/DTREE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/EEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/EEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/EFA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/EFA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ENTROPY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ENTROPY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ERQUERY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ERQUERY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ERUPSERT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ERUPSERT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ESM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ESM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/EXPAND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/EXPAND.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/EXPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/EXPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FACTEX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FACTEX.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FACTMAC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FACTMAC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FACTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FACTOR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FASTCLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FASTCLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FASTKNN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FASTKNN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FCMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FCMP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FEDSQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FEDSQL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FISM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FISM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FITTEDQNET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FITTEDQNET.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FMM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FMTC2ITM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FMTC2ITM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FONTREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FONTREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FOREST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FOREST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FORMAT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FORMAT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FREQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FREQ.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/FREQTAB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/FREQTAB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/G3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/G3D.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/G3GRID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/G3GRID.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GAM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GAMMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GAMMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GAMPL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GAMPL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GAMSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GAMSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GANNO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GANNO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GANTT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GANTT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GATEWAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GATEWAY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GBARLINE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GBARLINE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GCHART.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GCHART.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GCONTOUR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GCONTOUR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GDEVICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GDEVICE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GEE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GENMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GENMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GENSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GENSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GEOCODE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GEOCODE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GFONT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GFONT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GINSIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GINSIDE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GKPI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GKPI.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GLIMMIX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GLIMMIX.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GLM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GLM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GLMMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GLMMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GLMPOWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GLMPOWER.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GLMSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GLMSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GMAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GMAP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GMM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GOPTIONS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GOPTIONS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GPCLASS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GPCLASS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GPLOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GPLOT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GPREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GPREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GPROJECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GPROJECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GRADAR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GRADAR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GRADBOOST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GRADBOOST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GREDUCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GREDUCE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GREMOVE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GREMOVE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GREPLAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GREPLAY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GROOVY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GROOVY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GSLIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GSLIDE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GTILE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GTILE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/GVARCLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/GVARCLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HADOOP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HADOOP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HMM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HP4SCORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HP4SCORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPBIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPBIN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPCANDISC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPCANDISC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPCDM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPCDM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPCLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPCLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPCORR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPCORR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPCOUNTREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPCOUNTREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPDECIDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPDECIDE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPDMDB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPDMDB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPDS2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPDS2.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPEXPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPEXPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPF.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFENGINE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFENGINE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFESMSPEC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFESMSPEC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFEVENTS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFEVENTS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFEXMSPEC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFEXMSPEC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFIDMSPEC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFIDMSPEC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFMM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFOREST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFOREST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFRECON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFRECON.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPFUCMSPEC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPFUCMSPEC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPIMPUTE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPIMPUTE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPLMIXED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPLMIXED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPLOGISTIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPLOGISTIC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPMIXED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPMIXED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPNEURAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPNEURAL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPNLMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPNLMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPPANEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPPANEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPPLS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPPLS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPPRINCOMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPPRINCOMP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPQLIM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPQLIM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPREDUCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPREDUCE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPSAMPLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPSAMPLE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPSEVERITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPSEVERITY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPSPLIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPSPLIT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HPSUMMARY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HPSUMMARY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/HTTP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/HTTP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ICA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ICA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ICLIFETEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ICLIFETEST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ICPHREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ICPHREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/IML.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/IML.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/IMPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/IMPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/INBREED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/INBREED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/IRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/IRP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/IRT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/IRT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/JAVAINFO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/JAVAINFO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/JSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/JSON.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/KCLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/KCLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/KDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/KDE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/KPCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/KPCA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/KRIGE2D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/KRIGE2D.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LATTICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LATTICE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LIFEREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LIFEREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LIFETEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LIFETEST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LMIXED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LMIXED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LOAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LOAN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LOCALEDATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LOCALEDATA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LOESS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LOESS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LOGISTIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LOGISTIC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LOGSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LOGSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/LUA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/LUA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MACONTROL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MACONTROL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MAPIMPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MAPIMPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MBANALYSIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MBANALYSIS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MBC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MBC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MCMC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MCMC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MDC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MDS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MDS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MDSUMMARY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MDSUMMARY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MEANS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MEANS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MI.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MIANALYZE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MIANALYZE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MIGRATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MIGRATE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MIRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MIRP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MIXED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MIXED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MODECLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MODECLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MODEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MODEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MTLEARN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MTLEARN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MTS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MTS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MTSSCORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MTSSCORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MULTTEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MULTTEST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MVOUTLIER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MVOUTLIER.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MVPMODEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MVPMODEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MVPMONITOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MVPMONITOR.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/MWPCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/MWPCA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NESTED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NESTED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NETDRAW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NETDRAW.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NETWORK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NETWORK.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NLIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NLIN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NLMIXED.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NLMIXED.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NLMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NLMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NNET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NNET.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/NPAR1WAY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/NPAR1WAY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ODSLIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ODSLIST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ODSTABLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ODSTABLE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ODSTEXT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ODSTEXT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTBINNING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTBINNING.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTEX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTEX.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTGRAPH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTGRAPH.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTIONS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTIONS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTLOAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTLOAD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTLP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTLP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTLSO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTLSO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTMILP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTMILP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTMODEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTMODEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTNET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTNET.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTNETWORK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTNETWORK.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTQP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTQP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/OPTSAVE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/OPTSAVE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ORTHOREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ORTHOREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PANEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PANEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PARETO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PARETO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PARTITION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PARTITION.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PATHING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PATHING.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PCA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PDLREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PDLREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PHREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PHREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PHSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PHSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PLAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PLAN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PLM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PLM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PLS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PLS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PLSMOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PLSMOD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/POWER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/POWER.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PREFIXSPAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PREFIXSPAN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PRINCOMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PRINCOMP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PRINQUAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PRINQUAL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PRINT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PRINT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PRINTTO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PRINTTO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PROBIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PROBIT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PROTO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PROTO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PRTDEF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PRTDEF.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PRTEXP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PRTEXP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PSMATCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PSMATCH.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PWENCODE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PWENCODE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/PYTHON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/PYTHON.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/QDEVICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/QDEVICE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/QKB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/QKB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/QLIM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/QLIM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/QTRSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/QTRSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/QUANTLIFE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/QUANTLIFE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/QUANTREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/QUANTREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/RANK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/RANK.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/REG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/REG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/REGISTRY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/REGISTRY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/REGSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/REGSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/REPORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/REPORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/RISK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/RISK.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/ROBUSTREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/ROBUSTREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/RPCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/RPCA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/RSREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/RSREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/S3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/S3.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SANDWICH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SANDWICH.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SCAPROC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SCAPROC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SCORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SCORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SCOREACCEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SCOREACCEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SEQDESIGN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SEQDESIGN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SEQMC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SEQMC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SEQTEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SEQTEST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SEVERITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SEVERITY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SEVSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SEVSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SGMAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SGMAP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SGPANEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SGPANEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SGPIE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SGPIE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SGPLOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SGPLOT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SGRENDER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SGRENDER.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SGSCATTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SGSCATTER.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SHAPLEY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SHAPLEY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SIM2D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SIM2D.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SIMILARITY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SIMILARITY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SIMLIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SIMLIN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SIMNORMAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SIMNORMAL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SIMSYSTEM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SIMSYSTEM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SMCALIB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SMCALIB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SMPROJECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SMPROJECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SMSCORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SMSCORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SMSELECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SMSELECT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SMSPEC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SMSPEC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SORT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SORT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SPARSEML.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SPARSEML.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SPC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SPDO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SPDO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SPECTRA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SPECTRA.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SPP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SPP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SQL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SQL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SQOOP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SQOOP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SSM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SSM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STANDARD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STANDARD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STATESPACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STATESPACE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STDIZE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STDIZE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STDRATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STDRATE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STEPDISC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STEPDISC.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STREAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STREAM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/STYLEGAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/STYLEGAN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SUMMARY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SUMMARY.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SURVEYFREQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SURVEYFREQ.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SURVEYREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SURVEYREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SVDD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SVDD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SVMACHINE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SVMACHINE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/SYSLIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/SYSLIN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TABULARGAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TABULARGAN.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TABULATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TABULATE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TEMPLATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TEMPLATE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TEXTMINE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TEXTMINE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TEXTRULE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TEXTRULE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TIMEID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TIMEID.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TIMESERIES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TIMESERIES.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TMODEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TMODEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TMSCORE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TMSCORE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TPSPLINE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TPSPLINE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TRANSPOSE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TRANSPOSE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TRANSREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TRANSREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TRANTAB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TRANTAB.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TREE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TREE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TREESPLIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TREESPLIT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TSCSREG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TSCSREG.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TSCUSTINT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TSCUSTINT.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TSINFO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TSINFO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TSMODEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TSMODEL.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TSMODREPO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TSMODREPO.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TSNE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TSNE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/TTEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/TTEST.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/UCM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/UCM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/UNIVARIATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/UNIVARIATE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/UPLOAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/UPLOAD.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/VARCLUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/VARCLUS.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/VARCOMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/VARCOMP.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/VARIMPUTE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/VARIMPUTE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/VARIOGRAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/VARIOGRAM.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/VARMAX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/VARMAX.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/VARREDUCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/VARREDUCE.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/X11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/X11.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/X12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/X12.json -------------------------------------------------------------------------------- /server/pubsdata/Procedures/en/XSL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Procedures/en/XSL.json -------------------------------------------------------------------------------- /server/pubsdata/Statements/en/datastep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Statements/en/datastep.json -------------------------------------------------------------------------------- /server/pubsdata/Statements/en/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Statements/en/global.json -------------------------------------------------------------------------------- /server/pubsdata/Statements/en/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Statements/en/macro.json -------------------------------------------------------------------------------- /server/pubsdata/Statements/en/standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/Statements/en/standalone.json -------------------------------------------------------------------------------- /server/pubsdata/procedures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/pubsdata/procedures.json -------------------------------------------------------------------------------- /server/src/browser/ResLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/browser/ResLoader.ts -------------------------------------------------------------------------------- /server/src/browser/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/browser/server.ts -------------------------------------------------------------------------------- /server/src/node/ResLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/node/ResLoader.ts -------------------------------------------------------------------------------- /server/src/node/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/node/server.ts -------------------------------------------------------------------------------- /server/src/python/browser/typeShed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/python/browser/typeShed.ts -------------------------------------------------------------------------------- /server/src/python/sas/sas2py.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/python/sas/sas2py.pyi -------------------------------------------------------------------------------- /server/src/python/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/python/utils.ts -------------------------------------------------------------------------------- /server/src/sas/CodeZoneManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/CodeZoneManager.ts -------------------------------------------------------------------------------- /server/src/sas/CompletionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/CompletionProvider.ts -------------------------------------------------------------------------------- /server/src/sas/FormatOnTypeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/FormatOnTypeProvider.ts -------------------------------------------------------------------------------- /server/src/sas/LanguageServiceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/LanguageServiceProvider.ts -------------------------------------------------------------------------------- /server/src/sas/Lexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/Lexer.ts -------------------------------------------------------------------------------- /server/src/sas/LexerEx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/LexerEx.ts -------------------------------------------------------------------------------- /server/src/sas/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/Model.ts -------------------------------------------------------------------------------- /server/src/sas/SyntaxDataProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/SyntaxDataProvider.ts -------------------------------------------------------------------------------- /server/src/sas/SyntaxProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/SyntaxProvider.ts -------------------------------------------------------------------------------- /server/src/sas/formatter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/formatter/index.ts -------------------------------------------------------------------------------- /server/src/sas/formatter/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/formatter/parser.ts -------------------------------------------------------------------------------- /server/src/sas/formatter/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/formatter/printer.ts -------------------------------------------------------------------------------- /server/src/sas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/sas/utils.ts -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /snippets/proc-snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/snippets/proc-snippets.json -------------------------------------------------------------------------------- /syntaxes/sas.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/syntaxes/sas.tmLanguage.json -------------------------------------------------------------------------------- /syntaxes/sassql.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/syntaxes/sassql.tmLanguage.json -------------------------------------------------------------------------------- /themes/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/dark_plus.json -------------------------------------------------------------------------------- /themes/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/dark_vs.json -------------------------------------------------------------------------------- /themes/hc_black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/hc_black.json -------------------------------------------------------------------------------- /themes/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/light_plus.json -------------------------------------------------------------------------------- /themes/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/light_vs.json -------------------------------------------------------------------------------- /themes/sas-dark-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/sas-dark-color-theme.json -------------------------------------------------------------------------------- /themes/sas-highcontrast-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/sas-highcontrast-color-theme.json -------------------------------------------------------------------------------- /themes/sas-light-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/themes/sas-light-color-theme.json -------------------------------------------------------------------------------- /tools/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/tools/build.mjs -------------------------------------------------------------------------------- /tools/check-copyright.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/tools/check-copyright.mjs -------------------------------------------------------------------------------- /tools/locale.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/tools/locale.mjs -------------------------------------------------------------------------------- /tools/preparePubsdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/tools/preparePubsdata.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/webpack.config.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/Configurations/Profiles/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /website/docs/Configurations/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /website/docs/Configurations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Configurations/index.md -------------------------------------------------------------------------------- /website/docs/Configurations/sasLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Configurations/sasLog.md -------------------------------------------------------------------------------- /website/docs/Features/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "collapsed": false 3 | } 4 | -------------------------------------------------------------------------------- /website/docs/Features/accessContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/accessContent.md -------------------------------------------------------------------------------- /website/docs/Features/accessLibraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/accessLibraries.md -------------------------------------------------------------------------------- /website/docs/Features/accessServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/accessServer.md -------------------------------------------------------------------------------- /website/docs/Features/errorsWarnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/errorsWarnings.md -------------------------------------------------------------------------------- /website/docs/Features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/index.md -------------------------------------------------------------------------------- /website/docs/Features/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/running.md -------------------------------------------------------------------------------- /website/docs/Features/runningTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/runningTask.md -------------------------------------------------------------------------------- /website/docs/Features/sasCodeEditing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/sasCodeEditing.md -------------------------------------------------------------------------------- /website/docs/Features/sasNotebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/Features/sasNotebook.md -------------------------------------------------------------------------------- /website/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/README.md -------------------------------------------------------------------------------- /website/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/faq.md -------------------------------------------------------------------------------- /website/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/installation.md -------------------------------------------------------------------------------- /website/docs/matrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docs/matrix.md -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/package.json -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/images/featuresGlance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/featuresGlance.png -------------------------------------------------------------------------------- /website/static/images/formatter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/formatter.gif -------------------------------------------------------------------------------- /website/static/images/libraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/libraries.png -------------------------------------------------------------------------------- /website/static/images/quickFix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/quickFix.png -------------------------------------------------------------------------------- /website/static/images/runCode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/runCode2.png -------------------------------------------------------------------------------- /website/static/images/sas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/sas.png -------------------------------------------------------------------------------- /website/static/images/sasContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/sasContent.png -------------------------------------------------------------------------------- /website/static/images/sasNotebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/sasNotebook.png -------------------------------------------------------------------------------- /website/static/images/signatureHelp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/signatureHelp.gif -------------------------------------------------------------------------------- /website/static/images/vsCodeSnippets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/vsCodeSnippets.gif -------------------------------------------------------------------------------- /website/static/images/vsCodeTypeAhead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/static/images/vsCodeTypeAhead.gif -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sassoftware/vscode-sas-extension/HEAD/website/tsconfig.json --------------------------------------------------------------------------------