Skip to content

Commit

Permalink
shuffle these around a bit in order of usage
Browse files Browse the repository at this point in the history
  • Loading branch information
checkraisefold committed Sep 10, 2024
1 parent c7e6cbe commit ad38c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import * as vscode from 'vscode';

const Operators = ['false', 'true'] as const;
const Locations = ['Server', 'Client'] as const;
const Locations = ['Client', 'Server'] as const;
const Brand = ['Reliable', 'Unreliable'] as const;
const YieldTypes = ['Coroutine', 'Future', 'Promise'] as const;
const Calls = ['SingleSync', 'SingleAsync', 'ManySync', 'ManyAsync'] as const;
const Calls = ['ManyAsync', 'SingleAsync', 'ManySync', 'SingleSync'] as const;
const Casing = ['Pascal', 'Camel', 'Snake'].map((value) => `"${value}"`);

const Options = [
Expand Down

0 comments on commit ad38c27

Please sign in to comment.