summaryrefslogtreecommitdiff
path: root/compose-ide-plugin/resources
diff options
context:
space:
mode:
authorLeland Richardson <lelandr@google.com>2021-02-10 17:03:19 -0800
committerLeland Richardson <lelandr@google.com>2021-02-16 17:07:30 +0000
commit9445c31174657855874b36ee9536ed87387788a9 (patch)
tree456e1ed0d84497bbdee4c00e9e1050cbd0e74fef /compose-ide-plugin/resources
parent223921711b79f38f1cd5ccd32d3cba859084a40c (diff)
downloadidea-9445c31174657855874b36ee9536ed87387788a9.tar.gz
Update Compose frontend analysis
Change-Id: I7f877bef1dbc661255cf8445bebb7b13103fd414
Diffstat (limited to 'compose-ide-plugin/resources')
-rw-r--r--compose-ide-plugin/resources/messages/ComposeBundle.properties13
1 files changed, 13 insertions, 0 deletions
diff --git a/compose-ide-plugin/resources/messages/ComposeBundle.properties b/compose-ide-plugin/resources/messages/ComposeBundle.properties
index bcb48719900..c687efab3d1 100644
--- a/compose-ide-plugin/resources/messages/ComposeBundle.properties
+++ b/compose-ide-plugin/resources/messages/ComposeBundle.properties
@@ -13,3 +13,16 @@ compose=Compose
rename.file=Rename File
file.name=File name
rename.files.with.following.names=Rename files with the following names to:
+errors.composable_invocation=@Composable invocations can only happen from the context of a @Composable function
+errors.composable_expected=Functions which invoke @Composable functions must be marked with the @Composable annotation
+errors.captured_composable_invocation=Composable calls are not allowed inside the {0} parameter of {1}
+errors.composable_property_backing_field=Composable properties are not able to have backing fields
+errors.composable_var=Composable properties are not able to have backing fields
+errors.composable_suspend_fun=Suspend functions cannot be made Composable
+errors.illegal_try_catch_around_composable=Try catch is not supported around composable function invocations.
+errors.composable_function_reference=Function References of @Composable functions are not currently supported
+errors.conflicting_overloads=Conflicting overloads: {0}
+errors.type_mismatch=Type inference failed. Expected type mismatch: inferred type is {1} but {0} was expected
+errors.missing_disallow_composable_calls_annotation=Parameter {0} cannot be inlined inside of lambda argument {1} of {2} without also being annotated with @DisallowComposableCalls
+errors.nonreadonly_call_in_readonly_composable=Composables marked with @ReadOnlyComposable can only call other @ReadOnlyComposable composables
+errors.composable_fun_main=Composable main functions are not currently supported